You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! For some reason the Avoid unfolding folded sections does not work for me. Each time I type j or k it just starts typing :upSkipFol... and so on, instead of actually moving lines.
I have mdHelpers.js file in the root vault folder.
❯ cat mdHelpers.js
function moveUpSkipFold() {
view.editor.exec('goUp');
}
function moveDownSkipFold() {
view.editor.exec('goDown');
}
In my .obsidian.vimrc I have this:
" Fix for unfolding of folded lines when curor is hovered over
exmap upSkipFold jsfile mdHelpers.js {moveUpSkipFold()}
exmap downSkipFold jsfile mdHelpers.js {moveDownSkipFold()}
nmap k :upSkipFold
nmap j :downSkipFold
In Vimrc Support settings I have Support JS command optional enabled.
The text was updated successfully, but these errors were encountered:
Hello! For some reason the Avoid unfolding folded sections does not work for me. Each time I type j or k it just starts typing
:upSkipFol...
and so on, instead of actually moving lines.I have mdHelpers.js file in the root vault folder.
In my .obsidian.vimrc I have this:
In Vimrc Support settings I have Support JS command optional enabled.
The text was updated successfully, but these errors were encountered: