kiryph

Results 71 issues of kiryph

I try to adapt [Key chords to apply commonly used styles](https://castel.dev/post/lecture-notes-2/#key-chords-to-apply-commonly-used-styles) to Inkscape objects on macOS. The list of key chords are shown in this graphic ![default-styles-names2](https://user-images.githubusercontent.com/371756/148523857-67782f95-2535-4bfc-ba2b-4b1b9ddf2211.png) The author has...

e.g. for ``` # Session : Lock Screen # ctrl + cmd - q # Session : Log out # shift + cmd - q # Application : Quit #...

I like the idea of using the quickfix list for `[I` and `[D`. What about the builtin commands `:checkpath` and `:checkpath!` also described under [`:h include-search`](http://vimhelp.appspot.com/tagsrch.txt.html#include-search)?

enhancement

The fugitive commit is https://github.com/tpope/vim-fugitive/commit/5d11ff75014818da25596a89cea71df680e31788 My current startup log lists ``` ... 064.553 001.091 001.091: sourcing ~/.vim/pack/minpac/start/vim-abolish/plugin/abolish.vim ... 073.387 000.323 000.323: sourcing ~/.vim/pack/minpac/start/vim-fugitive/plugin/fugitive.vim ... ``` I use abolish less often...

Currently coercion works always for the textobject `iw`. This is as far as I can see hardcoded into the `s:coerce` function as `norm! yiw; let word = @@` I would...

1. Select some text visually 2. Move a round and use the text object `dgc`, `ygc`, `>gc` 3. Type `gv` will select the text-object in step 2. If I use...

IMHO the vim settings `'wildignore'` (`'wig'`) and `'suffixes'` (`'su'`) are directory related options, not per file, per filetype or globally. For example, vim-vinegar takes them into account when viewing a...

Consider I have an alphabetically enumerated list: ``` a) b) c) ``` I'd like to increment them in visual mode. I get following result: ``` b) c) ci) ``` How...

Currently, vinegar reads `'wildignore'/'wig'` only a single time when vim is started and sets `g:netrw_list_hide` with ```viml if exists("g:loaded_vinegar") || v:version < 700 || &cp finish endif let g:loaded_vinegar =...

Is it possible to add an option for following behaviour? When I press '-' to open vinegar-netrw and use 'o' or 'v' to open a file in a split window,...