add gdefault option
This commit is contained in:
parent
23be6cc862
commit
2fa4584eb4
2 changed files with 11 additions and 0 deletions
|
|
@ -50,3 +50,8 @@ module.exports = ExMode =
|
||||||
description: 'when splitting, split from right'
|
description: 'when splitting, split from right'
|
||||||
type: 'boolean'
|
type: 'boolean'
|
||||||
default: 'false'
|
default: 'false'
|
||||||
|
gdefault:
|
||||||
|
title: 'Gdefault'
|
||||||
|
description: 'When on, the ":substitute" flag \'g\' is default on'
|
||||||
|
type: 'boolean'
|
||||||
|
default: 'false'
|
||||||
|
|
|
||||||
|
|
@ -56,4 +56,10 @@ class VimOption
|
||||||
noscs: =>
|
noscs: =>
|
||||||
@nosmartcase()
|
@nosmartcase()
|
||||||
|
|
||||||
|
gdefault: =>
|
||||||
|
atom.config.set("ex-mode.gdefault", true)
|
||||||
|
|
||||||
|
nogdefault: =>
|
||||||
|
atom.config.set("ex-mode.gdefault", false)
|
||||||
|
|
||||||
module.exports = VimOption
|
module.exports = VimOption
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue