Justin B Rye
2016-04-02 00:32:32 +09:00
committed by Tatsuya Kinoshita
parent 631784149d
commit f4885d0838
10 changed files with 2942 additions and 889 deletions

6
menu.c
View File

@@ -1338,7 +1338,7 @@ mainMenu(int x, int y)
popupMenu(x, y, &MainMenu);
}
DEFUN(mainMn, MAIN_MENU MENU, "Popup menu")
DEFUN(mainMn, MAIN_MENU MENU, "Pop up menu")
{
Menu *menu = &MainMenu;
char *data;
@@ -1366,7 +1366,7 @@ DEFUN(mainMn, MAIN_MENU MENU, "Popup menu")
/* --- SelectMenu --- */
DEFUN(selMn, SELECT_MENU, "Popup buffer selection menu")
DEFUN(selMn, SELECT_MENU, "Pop up buffer selection menu")
{
int x = Currentbuf->cursorX + Currentbuf->rootX,
y = Currentbuf->cursorY + Currentbuf->rootY;
@@ -1511,7 +1511,7 @@ smDelBuf(char c)
/* --- SelTabMenu --- */
DEFUN(tabMn, TAB_MENU, "Popup tab selection menu")
DEFUN(tabMn, TAB_MENU, "Pop up tab selection menu")
{
int x = Currentbuf->cursorX + Currentbuf->rootX,
y = Currentbuf->cursorY + Currentbuf->rootY;