vimã®ã½ã¼ã¹ãèªãã§ã¿ããã¹ãï¼ãã®ï¼ãé»æã®ç§ï¼
å§ãã«README.txtãèªãã ã®ã§ããããã¯å ·ä½çã«ã½ã¼ã¹ãè¦ã¦ãããã¨æãã¾ã
ã¡ãªã¿ã«vimã®ã³ã¼ãã£ã³ã°ã¯ããªãå¤ãã¹ã¿ã¤ã«ãã¨ã£ã¦ã¾ããC++ããã使ãã¾ãã.. ã¨ããå£ä½ã«ã¯ãã¶ãæããããããªæ¸ãæ¹ããã¦ã¾ãã
ã¨ããããmain.cããçºãã¦ã¿ããã¹ããmain.cãè¦ãã¨ãããªã次ã®ãããªãã¼ã¿æ§é ãåºç¾ãã
ã¨ããããæéè¦ãã¼ã¿æ§é ã¨ã¿ã¦ãããããæ§é ä½ã®ä¸ã«,argcã¨ãargvã¨ãå ¥ã£ã¦ãã£ã¦ã®ãé¢ç½ããé·ãã®ã§ã¨ããããå¦çã追ãã¤ã¤è¦ã¦ããã¤ãã
/* Struct for various parameters passed between main() and other functions. */
typedef struct
{
int argc;
char **argv;int evim_mode; /* started as "evim" */
char_u *use_vimrc; /* vimrc from -u argument */int n_commands; /* no. of commands from + or -c */
char_u *commands[MAX_ARG_CMDS]; /* commands from + or -c arg. */
char_u cmds_tofree[MAX_ARG_CMDS]; /* commands that need free() */
int n_pre_commands; /* no. of commands from --cmd */
char_u *pre_commands[MAX_ARG_CMDS]; /* commands from --cmd argument */int edit_type; /* type of editing to do */
char_u *tagname; /* tag from -t argument */
#ifdef FEAT_QUICKFIX
char_u *use_ef; /* 'errorfile' from -q argument */
#endifint want_full_screen;
int stdout_isatty; /* is stdout a terminal? */
char_u *term; /* specified terminal name */
#ifdef FEAT_CRYPT
int ask_for_key; /* -x argument */
#endif
int no_swap_file; /* "-n" argument used */
#ifdef FEAT_EVAL
int use_debug_break_level;
#endif
#ifdef FEAT_WINDOWS
int window_count; /* number of windows to use */
int window_layout; /* 0, WIN_HOR, WIN_VER or WIN_TABS */
#endif#ifdef FEAT_CLIENTSERVER
int serverArg; /* TRUE when argument for a server */
char_u *serverName_arg; /* cmdline arg for server name */
char_u *serverStr; /* remote server command */
char_u *serverStrEnc; /* encoding of serverStr */
char_u *servername; /* allocated name for our server */
#endif
#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE)
int literal; /* don't expand file names */
#endif
#ifdef MSWIN
int full_path; /* file name argument was full path */
#endif
#ifdef FEAT_DIFF
int diff_mode; /* start with 'diff' set */
#endif
} mparm_T;
ããã¦edit_typeãå®ç¾©ãã ããã¯ã¤ãã¯ãã£ãã¯ã¹ã¢ã¼ãã£ã¦ã®ãè¬ã§ããã
/* Values for edit_type. */
#define EDIT_NONE 0 /* no edit type yet */
#define EDIT_FILE 1 /* file name argument[s] given, use argument list */
#define EDIT_STDIN 2 /* read file from stdin */
#define EDIT_TAG 3 /* tag name argument given, use tagname */
#define EDIT_QF 4 /* start in quickfix mode */
ããã¦ç©èªã®å§ã¾ãã¨ããããã§ã¡ã¤ã³å¦çãå§ã¾ã£ã¦ããã¾ã
æ¡ä»¶å¦çãä½ãã¨é¢åãªãã¨ã«ãªã£ã¦ãã®ã¯ããã¦ãããããã¾ããå§ãã«ã_cdeclã¨ãåºã¦ããã¨ã¯æããªãã£ãã_cdeclã£ã¡ã ã¼ã®ã¯ã¹ã¿ãã¯ã¨ãã¨é¢ä¿ãã¦ããããããã£ã¦ãããã¤ã§ã_stdcallã£ã¦ã®ãã¹ã¿ãã¯ã«é¢é£ãã¦åå¨ãã¾ããã詳ããçªã£è¾¼ãã§èª¿ã¹ããã¨ã¯æãã¾ããããã¼ã¸ã®é½åä¸ã¨ã°ãã¦ã¿ããï¼ãã¼
#ifndef PROTO /* don't want a prototype for main() */
int
# ifdef VIMDLL
_export
# endif
# ifdef FEAT_GUI_MSWIN
# ifdef __BORLANDC__
_cdecl
# endif
VimMain
# else
main
# endif
(argc, argv)
int argc;
char **argv;
{
ã§ã次ã«ä»¥ä¸ã®ã³ã¼ããåºã¦ãã¾ã
char_uã£ã¦ã®ã¯unsigned charã®ãã¨ãucharã¨ãã§defineãã¦ãã®ã¯ããè¦ããããchar_uã¯åãã¦ããç¥ããªã
char_u *fname = NULL; /* file name from command line */
mparm_T params; /* various parameters passed between
* main() and other functions. */
ã§signalã®è¨å®ã¨ãviminfoã®èªã¿ãã¿ãªã©ããããããã£ã¦æå¾ã«ä»¥ä¸ã®ã³ãã³ãããã¾ã
ãããå®è¡ããmain_loopã®å¦çãæ°¸é ã¨ç¹°ãè¿ããããã¨ã«ãªãã¾ã
* Call the main command loop. This never returns.
*/
main_loop(FALSE, FALSE);return 0;
}
ã§æ¬¡ã«ä½æ
ãedit()é¢æ°ãè¦ã¦ã¿ããã¨ã«ãã¾ããedit()ã¯ã¤ã³ãµã¼ãã¢ã¼ããå§ã¾ã£ãæã«å¼ã³åºããã¾ããå®ç¾©ã¯ä»¥ä¸ã®ããã«ãªã£ã¦ããã¾ã
å§ãã«ããããããã¨èª¬æãæ¸ãã¦ããã¾ã
/*
* edit(): Start inserting text.
*
* "cmdchar" can be:
* 'i' normal insert command
* 'a' normal append command
* 'R' replace command
* 'r' "r" command: insert one . Note: count can be > 1, for redo,
* but still only oneis inserted. The is not used for redo.
* 'g' "gI" command.
* 'V' "gR" command for Virtual Replace mode.
* 'v' "gr" command for single character Virtual Replace mode.
*
* This function is not called recursively. For CTRL-O commands, it returns
* and lets the caller handle the Normal-mode command.
*
* Return TRUE if a CTRL-O command caused the return (insert mode pending).
*/
int
edit(cmdchar, startln, count)
int cmdchar;
int startln; /* if set, insert at start of line */
long count;
{
editã®ã½ã¼ã¹ãèªãã§ããã¡ã«restart_editã¨ããã®ãããããã§ã¦ããã®ã§ããã¹ãã¨ããinsertã¢ã¼ãä¸Ctrl+oãå®è¡ããã¨ä¸æã¤ã³ãµã¼ãã¢ã¼ãï¼ï¼xã¨ãå®è¡ããã¨æåãæ¶ããï¼ã¨ãããã¨ãã§ããã¨ãããã¨ãããã£ãã詳ããç¨éã¯ä¸æ...
ã¡ãªã¿ã«vimå®è¡æãå·¦ä¸ã«åºã¦ããINSERTã¨ãããæååã¯STATEã°ãã¼ãã«å¤æ°ã¨ãã¦å®ç¾©ããã¦ãã¾ããã³ãã³ããå®è¡ããéã«STETE=NORMALãªã©ã¨ãã¦å¤æ´ãã¦è¡¨ç¤ºãå¤æ´ãããããã«ãªã£ã¦ããããã§ã