1 /* vi:set ts=8 sts=4 sw=4 ft=objc:
3 * VIM - Vi IMproved by Bram Moolenaar
4 * MacVim GUI port by Bjorn Winckler
6 * Do ":help uganda" in Vim to read copying and usage conditions.
7 * Do ":help credits" in Vim to see a list of people who contributed.
8 * See README.txt for an overview of the Vim source code.
13 char *MessageStrings[] =
28 "SetTextDimensionsMsgID",
29 "SetVimWindowTitleMsgID",
37 "RemoveMenuItemMsgID",
38 "EnableMenuItemMsgID",
42 "CreateScrollbarMsgID",
43 "DestroyScrollbarMsgID",
45 "SetScrollbarPositionMsgID",
46 "SetScrollbarThumbMsgID",
47 "ScrollbarEventMsgID",
49 "VimShouldCloseMsgID",
50 "SetDefaultColorsMsgID",
59 "AdjustLinespaceMsgID",
67 // NSUserDefaults keys
68 NSString *MMNoWindowKey = @"MMNoWindow";
69 NSString *MMTabMinWidthKey = @"MMTabMinWidth";
70 NSString *MMTabMaxWidthKey = @"MMTabMaxWidth";
71 NSString *MMTabOptimumWidthKey = @"MMTabOptimumWidth";
72 NSString *MMTextInsetLeftKey = @"MMTextInsetLeft";
73 NSString *MMTextInsetRightKey = @"MMTextInsetRight";
74 NSString *MMTextInsetTopKey = @"MMTextInsetTop";
75 NSString *MMTextInsetBottomKey = @"MMTextInsetBottom";
76 NSString *MMTerminateAfterLastWindowClosedKey
77 = @"MMTerminateAfterLastWindowClosed";
78 NSString *MMTypesetterKey = @"MMTypesetter";
79 NSString *MMCellWidthMultiplierKey = @"MMCellWidthMultiplier";
80 NSString *MMBaselineOffsetKey = @"MMBaselineOffset";
81 NSString *MMTranslateCtrlClickKey = @"MMTranslateCtrlClick";
82 NSString *MMTopLeftPointKey = @"MMTopLeftPoint";
83 NSString *MMOpenFilesInTabsKey = @"MMOpenFilesInTabs";