diff options
author | 2009-02-08 22:35:57 -0500 | |
---|---|---|
committer | 2009-02-08 22:35:57 -0500 | |
commit | 5e83c949c15f75858e1602a6989c8c3d20753be3 (patch) | |
tree | 89a6ed35b7ff9f7c985d75235063e500acce888f | |
parent | 638b667398201d00989c055d90637ffce20bd1d3 (diff) | |
download | textadept-5e83c949c15f75858e1602a6989c8c3d20753be3.tar.gz textadept-5e83c949c15f75858e1602a6989c8c3d20753be3.zip |
Fixed Paste menu issue with Mac OSX; core/ext/menu.lua
-rw-r--r-- | core/ext/menu.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/ext/menu.lua b/core/ext/menu.lua index 59b027b9..9032c4b6 100644 --- a/core/ext/menu.lua +++ b/core/ext/menu.lua @@ -542,6 +542,7 @@ local actions = { function() if view.size then view.size = view.size - 10 end end }, } +if MAC then actions[ID.PASTE] = { m_editing.smart_paste } end -- fix paste issue -- lexers here MUST be in the same order as in the menu local lexers = { |