kiryph

Results 71 issues of kiryph

I want to change the mapping of `$` for LaTeX files `.tex`: I have added to my $VIMRC following: ```viml let g:tex_flavor='latex' augroup mytargets autocmd! autocmd User targets#mappings#user call targets#mappings#extend({...

I like the built-in behavior of `zc` to close iteratively current fold, next parent fold and so forth. I would like to have a similar behavior for `zo` to open...

Vim's default behaviour for `zC` and `zA` when closing is that it only closes folds under the cursorline which is always only one line. This is identical to `zc` and...

enhancement

I would like to add to my directional commands a cyclic behaviour if I hit the boundary of a direction. ### Stacks ☑ For stacks I cycle through with `stack.next`...

Versions - yabai 4.0.1 (installed via homebrew) - LibreOffice 7.3.5 (installed via dmg from [libreoffice.org](https://www.libreoffice.org/)) - macOS 11.6.8 Can someone else confirm issues between yabai and LibreOffice? It happens mostly...

This PR is useful to enable circulation (aka cyclic or periodic boundaries) requested in https://github.com/koekeishiya/yabai/issues/1165. Following excerpt of an skhd file illustrates how to define mappings to use the added...

Example xml file: ```xml 1.1 1.1 ``` Place cursor on second line and press `gS`. ### Expected output ```xml 1.1 1.1 ``` ### Current Output: ```xml 1.1 1.1 ``` The...

I miss support for the commonly found line continuation style with a trailing backslash when joining lines. For example in cmake: ```cmake message("\ This is the first line of a...

I have added following configuration to my `~/.vifm/vifmrc`: ```viml " Add simple support for ssh remote " :ssh user@remote:/path/to/remote/folder filetype *.ssh FUSE_MOUNT2|sshfs %PARAM %DESTINATION_DIR command ssh \ : let $SSH_FILE...