config/keymap/emacs.rb in ver-2010.02 vs config/keymap/emacs.rb in ver-2010.08
- old
+ new
@@ -1,12 +1,16 @@
module VER
major_mode :Fundamental do
+ use :fundamental
+ end
+
+ minor_mode :fundamental do
handler Methods::Basic
map :quit, %w[Control-x Control-c]
handler Methods::Save
- map :file_save, %w[Control-x Control-s]
+ map :save, %w[Control-x Control-s]
map :save_all, %w[Control-x s]
handler Methods::Open
map :file_open_popup, %w[Control-x Control-f]
@@ -15,10 +19,10 @@
handler Methods::Undo
map :undo, %w[Control-slash], %w[Control-x u], %w[Control-underscore], %w[Undo]
map :redo, %w[Redo] # emacs redo breaks my brain... undo only for now
- handler Methods::Move
+ handler :at_insert
map :end_of_file, %w[Control-greater]
map :end_of_line, %w[Control-e], %w[End]
map :next_char, %w[Control-f], %w[Right]
map :next_line, %w[Control-n], %w[Down]
map :next_page, %w[Control-v], %w[Next]