Giter VIP home page Giter VIP logo

Comments (3)

vikyd avatar vikyd commented on August 22, 2024

Why add to status bar?

from vscode-ext-foldlevel.

Yzrsah avatar Yzrsah commented on August 22, 2024

I put some things in the status bar to make it easier to remember to use it.
You might forget to use it when there's 500 other hotkeys and things to remember.
For example, I had folding extensions installed for 6 months and I used it 0 times.
I added the Fold Levels to the status bar, and now I use it every day.

from vscode-ext-foldlevel.

vikyd avatar vikyd commented on August 22, 2024

vscode-ext-foldlevel only provides command to fold to level, does not care about the icon and UI.

I guess you are using this VSCode extension vscode-commandbar. You should find the unicode icon from https://unicode-table.com . That's your favorite.

If let me choose one, I may pick this: ├ 1 ├ 2 ├ 3

Here is my commandbar.json:

{
  "skipTerminateQuickPick": true,
  "skipSwitchToOutput": false,
  "skipErrorMessage": true,
  "commands": [
	{
	  "text": "├ 1",
	  "tooltip": "fold to level 1",
	  "color": "yellow",
	  "command": "vikyd.FoldLevel.level1",
	  "commandType": "palette",
	  "alignment": "left",
	  "skipTerminateQuickPick": false,
	  "priority": 0
	},
	{
	  "text": "├ 2",
	  "tooltip": "fold to level 2",
	  "color": "yellow",
	  "command": "vikyd.FoldLevel.level2",
	  "commandType": "palette",
	  "alignment": "left",
	  "skipTerminateQuickPick": false,
	  "priority": 0
	},
	{
	  "text": "├ 3",
	  "tooltip": "fold to level 3",
	  "color": "yellow",
	  "command": "vikyd.FoldLevel.level3",
	  "commandType": "palette",
	  "alignment": "left",
	  "skipTerminateQuickPick": false,
	  "priority": 0
	}
  ]
}

I prefer shortcut instead the commandbar.

from vscode-ext-foldlevel.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.