This commit is contained in:
LEGAEPERESEC\jadonm 2024-12-30 16:36:07 +02:00
parent 4056d0c5e3
commit c246272eee
2 changed files with 50 additions and 0 deletions

View File

@ -18,6 +18,10 @@ Add keybinding: { "keys": ["ctrl+alt+t"], "command": "neovintageous_toggle" }
Then: `ctrl+alt+t` -> toggle on/off
---------------------
## Selection related stuff:
`v + i + <bracket_type>`->Select everything inside matching pair of brackets
`x` -> cut current selection

View File

@ -1,3 +1,49 @@
# Coolplugin idea: SidebarMarkSetJump
Plugin to mark files that you're working on. across folders, projects, windows?
Then with a keystroke: "Ctrl+0"
It will open list the marked files in the sidebar.Importantly preserving the dir structure in a visually compact way
i.e say you marked 3 files. and they kinda look like this
```
.
├── file.txt
├── dir1/
│ ├── otherfile.null
│ ├── otherfile2.null
│ ├── otherfile3.null
│ ├── file1.py
│ ├── otherfileI.null
│ └── otherfileN.null
└── dir2/
└── subdir/
├── otherfile.null
├── otherfile.null
└── file2.py
```
When we hit ctrl+0.. It should look like this. hiding unecessary files while preserving the visual location of the file
so easy for mind to track
```
.
├── file.txt [a]
├── dir1/
│ ├── ...
│ ├── file1.py [b]
│ ├── otherfileI.null
│ └── otherfileN.null
└── dir2/
└── subdir/
├── ...
└── file2.py [c]
```
Then when we wanna jump to any marked file. We just choose the marked file id.
# ThoughtLog :: Sublime + NeoVintageous
Okay so I think it's safe to say NeoVintageous is super cool - and has a bunch of super sweet editing and navigation features.