From cdb8dc17cadf74bc38f2b94100dd3c13cb428555 Mon Sep 17 00:00:00 2001 From: Bjorn Winckler Date: Wed, 26 Mar 2008 20:41:00 +0100 Subject: [PATCH] Update :maca help, release actionDict --- runtime/doc/gui_mac.txt | 5 +++-- src/MacVim/MMBackend.m | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/runtime/doc/gui_mac.txt b/runtime/doc/gui_mac.txt index 48b0518c1a..24e5742d42 100644 --- a/runtime/doc/gui_mac.txt +++ b/runtime/doc/gui_mac.txt @@ -361,8 +361,8 @@ application bundle) which contains all actions that may be called. The key in this dictionary is the name of the action message (case sensitive), the value is not used. -Note: The |:macaction| command supports tab-completion so to cycle through -all available actions type ":maca" and keep pressing . +Hint: The |:macaction| command supports command-line completion so you can +enter ":maca" to see a list of all available actions. Here is a random assortment of actions from Actions.plist which might be useful. @@ -376,6 +376,7 @@ newWindow: Open a new (empty) window orderFrontCharacterPalette: Show the the "Special Characters" dialog orderFrontFontPanel: Show the Font panel orderFrontPreferencePanel: Show the Preferences panel +performClose: Close tab/window performZoom: Zoom window (same as clicking the green blob) selectNextWindow: Select next window (similar to ) selectPreviousWindow: Select previous window (similar to ) diff --git a/src/MacVim/MMBackend.m b/src/MacVim/MMBackend.m index 128f243dc7..91250dcc14 100644 --- a/src/MacVim/MMBackend.m +++ b/src/MacVim/MMBackend.m @@ -169,6 +169,7 @@ - (void)dealloc [drawData release]; drawData = nil; [frontendProxy release]; frontendProxy = nil; [connection release]; connection = nil; + [actionDict release]; actionDict = nil; [sysColorDict release]; sysColorDict = nil; [colorDict release]; colorDict = nil;