From c246272eee78d9ddc1e9417c6db8be5e8db785ee Mon Sep 17 00:00:00 2001 From: "LEGAEPERESEC\\jadonm" Date: Mon, 30 Dec 2024 16:36:07 +0200 Subject: [PATCH] handover --- Sublime-vim.md | 4 ++++ ThoughtLog.md | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+) diff --git a/Sublime-vim.md b/Sublime-vim.md index dc0dc28..5c680ac 100644 --- a/Sublime-vim.md +++ b/Sublime-vim.md @@ -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 + `->Select everything inside matching pair of brackets + + `x` -> cut current selection diff --git a/ThoughtLog.md b/ThoughtLog.md index 65ec5f9..59e1c0e 100644 --- a/ThoughtLog.md +++ b/ThoughtLog.md @@ -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.