add gdefault option

This commit is contained in:
mkiken 2017-08-13 16:08:28 +09:00
parent 23be6cc862
commit 2fa4584eb4
2 changed files with 11 additions and 0 deletions

View file

@ -56,4 +56,10 @@ class VimOption
noscs: =>
@nosmartcase()
gdefault: =>
atom.config.set("ex-mode.gdefault", true)
nogdefault: =>
atom.config.set("ex-mode.gdefault", false)
module.exports = VimOption