diff options
author | 2011-07-15 18:16:25 -0400 | |
---|---|---|
committer | 2011-07-15 18:16:25 -0400 | |
commit | e7e966a31a447d1bd1db3b29e1ae1775242c7403 (patch) | |
tree | 96885ba0eec94e5d6e98fdef9706bf9df4c19e20 | |
parent | e47613b24a9efa61a967a8e723b470bd510b6bca (diff) | |
download | textadept-e7e966a31a447d1bd1db3b29e1ae1775242c7403.tar.gz textadept-e7e966a31a447d1bd1db3b29e1ae1775242c7403.zip |
Fixed accelerator conflict in menu.
-rw-r--r-- | core/locale.conf | 2 | ||||
-rw-r--r-- | modules/textadept/keys.conf | 2 | ||||
-rw-r--r-- | modules/textadept/keys.osx.conf | 2 | ||||
-rw-r--r-- | modules/textadept/menu.lua | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/core/locale.conf b/core/locale.conf index 8403e44f..6d756ce5 100644 --- a/core/locale.conf +++ b/core/locale.conf @@ -126,8 +126,8 @@ Upper Case Selection = _Upper Case Selection Lower Case Selection = _Lower Case Selection Enclose as XML Tags = Enclose as _XML Tags Enclose as Single XML Tag = Enclose as Single XML _Tag +Enclose in Single Quotes = Enclose in Single _Quotes Enclose in Double Quotes = Enclose in _Double Quotes -Enclose in Single Quotes = Enclose in _Single Quotes Enclose in Parentheses = Enclose in _Parentheses Enclose in Brackets = Enclose in _Brackets Enclose in Braces = Enclose in B_races diff --git a/modules/textadept/keys.conf b/modules/textadept/keys.conf index ab9f9bb6..8ae03c15 100644 --- a/modules/textadept/keys.conf +++ b/modules/textadept/keys.conf @@ -53,8 +53,8 @@ Upper Case Selection = Lower Case Selection = Enclose as XML Tags = a< Enclose as Single XML Tag = a> -Enclose in Double Quotes = a" Enclose in Single Quotes = a' +Enclose in Double Quotes = a" Enclose in Parentheses = a( Enclose in Brackets = a[ Enclose in Braces = a{ diff --git a/modules/textadept/keys.osx.conf b/modules/textadept/keys.osx.conf index deb9d623..e148d09e 100644 --- a/modules/textadept/keys.osx.conf +++ b/modules/textadept/keys.osx.conf @@ -53,8 +53,8 @@ Upper Case Selection = Lower Case Selection = Enclose as XML Tags = m< Enclose as Single XML Tag = m> -Enclose in Double Quotes = m" Enclose in Single Quotes = m' +Enclose in Double Quotes = m" Enclose in Parentheses = m( Enclose in Brackets = m[ Enclose in Braces = m{ diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua index bf2db3e5..71eef1fc 100644 --- a/modules/textadept/menu.lua +++ b/modules/textadept/menu.lua @@ -170,8 +170,8 @@ menubar = { buffer:insert_text(-1, '</'..buffer:text_range(pos, buffer.current_pos)) end), menuitem('Enclose as Single XML Tag', { m_editing.enclose, '<', ' />' }), - menuitem('Enclose in Double Quotes', { m_editing.enclose, '"', '"' }), menuitem('Enclose in Single Quotes', { m_editing.enclose, "'", "'" }), + menuitem('Enclose in Double Quotes', { m_editing.enclose, '"', '"' }), menuitem('Enclose in Parentheses', { m_editing.enclose, '(', ')' }), menuitem('Enclose in Brackets', { m_editing.enclose, '[', ']' }), menuitem('Enclose in Braces', { m_editing.enclose, '{', '}' }), |