Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add 'j' to WordBreakSyms
I type in VNI style so `j` doesn't need to be processed by unikey at
all. Making `j` a WordBreakSym prevents unikey from hijacking my `jj`
keymap in vim.
  • Loading branch information
nhanb committed Jan 29, 2015
1 parent 0b8e5ba commit d976a64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unikey-im.cpp
Expand Up @@ -85,7 +85,7 @@ static const unsigned char WordBreakSyms[] =
',', ';', ':', '.', '\"', '\'', '!', '?', ' ',
'<', '>', '=', '+', '-', '*', '/', '\\',
'_', '~', '`', '@', '#', '$', '%', '^', '&', '(', ')', '{', '}', '[', ']',
'|'
'|', 'j'
};

static const unsigned char WordAutoCommit[] =
Expand Down

0 comments on commit d976a64

Please sign in to comment.