• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Révision2406379373091c7efe1ac704ad5abe3f6a102358 (tree)
l'heure2018-12-18 06:24:52
AuteurMarkus <Markus@dark...>
CommiterMarkus

Message de Log

new ftplugin echos value of options

Change Summary

Modification

--- /dev/null
+++ b/after/ftplugin/help.vim
@@ -0,0 +1,12 @@
1+" Vim ftplugin file
2+"
3+" Description: Add-on some features for Help files.
4+
5+if exists("b:did_ftplugin_after")
6+ finish
7+endif
8+
9+" Show value of 'option' under cursor
10+nnoremap <buffer> <LocalLeader>o :execute "echo &" . substitute(expand("<cword>"), "'", "", "g")<CR>
11+
12+let b:did_ftplugin_after = 1