Skip to content

Commit 16cdbc5

Browse files
committed
Fix bang and register command modifier
1 parent 44fb250 commit 16cdbc5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

neovim/plugin/decorators.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ def dec(f):
5959
opts['count'] = count
6060

6161
if bang:
62-
opts['bang'] = True
62+
opts['bang'] = ''
6363

6464
if register:
65-
opts['register'] = True
65+
opts['register'] = ''
6666

6767
if nargs:
6868
opts['nargs'] = nargs

0 commit comments

Comments
 (0)