亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? vi_keymap.c

?? 基于的linux的oracle sqlplus替代工具
?? C
?? 第 1 頁 / 共 3 頁
字號(hào):
/* vi_keymap.c -- the keymap for vi_mode in readline (). *//* Copyright (C) 1987, 1989, 1992 Free Software Foundation, Inc.   This file is part of the GNU Readline Library, a library for   reading lines of text with interactive input and history editing.   The GNU Readline Library is free software; you can redistribute it   and/or modify it under the terms of the GNU General Public License   as published by the Free Software Foundation; either version 2, or   (at your option) any later version.   The GNU Readline Library is distributed in the hope that it will be   useful, but WITHOUT ANY WARRANTY; without even the implied warranty   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the   GNU General Public License for more details.   The GNU General Public License is often shipped with GNU software, and   is generally kept in a file called COPYING or LICENSE.  If you do not   have a copy of the license, write to the Free Software Foundation,   59 Temple Place, Suite 330, Boston, MA 02111 USA. */#if !defined (BUFSIZ)#include <stdio.h>#endif /* !BUFSIZ */#include "readline.h"#if 0extern KEYMAP_ENTRY_ARRAY vi_escape_keymap;#endif/* The keymap arrays for handling vi mode. */KEYMAP_ENTRY_ARRAY vi_movement_keymap = {  /* The regular control keys come first. */  { ISFUNC, (rl_command_func_t *)0x0 },		/* Control-@ */  { ISFUNC, (rl_command_func_t *)0x0 },		/* Control-a */  { ISFUNC, (rl_command_func_t *)0x0 },		/* Control-b */  { ISFUNC, (rl_command_func_t *)0x0 },		/* Control-c */  { ISFUNC, rl_vi_eof_maybe },			/* Control-d */  { ISFUNC, rl_emacs_editing_mode },		/* Control-e */  { ISFUNC, (rl_command_func_t *)0x0 },		/* Control-f */  { ISFUNC, rl_abort },				/* Control-g */  { ISFUNC, rl_backward_char },			/* Control-h */  { ISFUNC, (rl_command_func_t *)0x0 },		/* Control-i */  { ISFUNC, rl_newline },			/* Control-j */  { ISFUNC, rl_kill_line },			/* Control-k */  { ISFUNC, rl_clear_screen },			/* Control-l */  { ISFUNC, rl_newline },			/* Control-m */  { ISFUNC, rl_get_next_history },		/* Control-n */  { ISFUNC, (rl_command_func_t *)0x0 },		/* Control-o */  { ISFUNC, rl_get_previous_history },		/* Control-p */  { ISFUNC, rl_quoted_insert },			/* Control-q */  { ISFUNC, rl_reverse_search_history },	/* Control-r */  { ISFUNC, rl_forward_search_history },	/* Control-s */  { ISFUNC, rl_transpose_chars },		/* Control-t */  { ISFUNC, rl_unix_line_discard },		/* Control-u */  { ISFUNC, rl_quoted_insert },			/* Control-v */  { ISFUNC, rl_unix_word_rubout },		/* Control-w */  { ISFUNC, (rl_command_func_t *)0x0 },		/* Control-x */  { ISFUNC, rl_yank },				/* Control-y */  { ISFUNC, (rl_command_func_t *)0x0 },		/* Control-z */  { ISFUNC, (rl_command_func_t *)0x0 },		/* Control-[ */	/* vi_escape_keymap */  { ISFUNC, (rl_command_func_t *)0x0 },		/* Control-\ */  { ISFUNC, (rl_command_func_t *)0x0 },		/* Control-] */  { ISFUNC, (rl_command_func_t *)0x0 },		/* Control-^ */  { ISFUNC, rl_vi_undo },			/* Control-_ */  /* The start of printing characters. */  { ISFUNC, rl_forward_char },			/* SPACE */  { ISFUNC, (rl_command_func_t *)0x0 },		/* ! */  { ISFUNC, (rl_command_func_t *)0x0 },		/* " */  { ISFUNC, rl_insert_comment },		/* # */  { ISFUNC, rl_end_of_line },			/* $ */  { ISFUNC, rl_vi_match },			/* % */  { ISFUNC, rl_vi_tilde_expand },		/* & */  { ISFUNC, (rl_command_func_t *)0x0 },		/* ' */  { ISFUNC, (rl_command_func_t *)0x0 },		/* ( */  { ISFUNC, (rl_command_func_t *)0x0 },		/* ) */  { ISFUNC, rl_vi_complete },			/* * */  { ISFUNC, rl_get_next_history},		/* + */  { ISFUNC, rl_vi_char_search },		/* , */  { ISFUNC, rl_get_previous_history },		/* - */  { ISFUNC, rl_vi_redo },			/* . */  { ISFUNC, rl_vi_search },			/* / */  /* Regular digits. */  { ISFUNC, rl_beg_of_line },			/* 0 */  { ISFUNC, rl_vi_arg_digit },			/* 1 */  { ISFUNC, rl_vi_arg_digit },			/* 2 */  { ISFUNC, rl_vi_arg_digit },			/* 3 */  { ISFUNC, rl_vi_arg_digit },			/* 4 */  { ISFUNC, rl_vi_arg_digit },			/* 5 */  { ISFUNC, rl_vi_arg_digit },			/* 6 */  { ISFUNC, rl_vi_arg_digit },			/* 7 */  { ISFUNC, rl_vi_arg_digit },			/* 8 */  { ISFUNC, rl_vi_arg_digit },			/* 9 */  /* A little more punctuation. */  { ISFUNC, (rl_command_func_t *)0x0 },		/* : */  { ISFUNC, rl_vi_char_search },		/* ; */  { ISFUNC, (rl_command_func_t *)0x0 },		/* < */  { ISFUNC, rl_vi_complete },			/* = */  { ISFUNC, (rl_command_func_t *)0x0 },		/* > */  { ISFUNC, rl_vi_search },			/* ? */  { ISFUNC, (rl_command_func_t *)0x0 },		/* @ */  /* Uppercase alphabet. */  { ISFUNC, rl_vi_append_eol },			/* A */  { ISFUNC, rl_vi_prev_word},			/* B */  { ISFUNC, rl_vi_change_to },			/* C */  { ISFUNC, rl_vi_delete_to },			/* D */  { ISFUNC, rl_vi_end_word },			/* E */  { ISFUNC, rl_vi_char_search },		/* F */  { ISFUNC, rl_vi_fetch_history },		/* G */  { ISFUNC, (rl_command_func_t *)0x0 },		/* H */  { ISFUNC, rl_vi_insert_beg },			/* I */  { ISFUNC, (rl_command_func_t *)0x0 },		/* J */  { ISFUNC, (rl_command_func_t *)0x0 },		/* K */  { ISFUNC, (rl_command_func_t *)0x0 },		/* L */  { ISFUNC, (rl_command_func_t *)0x0 },		/* M */  { ISFUNC, rl_vi_search_again },		/* N */  { ISFUNC, (rl_command_func_t *)0x0 },		/* O */  { ISFUNC, rl_vi_put },			/* P */  { ISFUNC, (rl_command_func_t *)0x0 },		/* Q */  { ISFUNC, rl_vi_replace },			/* R */  { ISFUNC, rl_vi_subst },			/* S */  { ISFUNC, rl_vi_char_search },		/* T */  { ISFUNC, rl_revert_line },			/* U */  { ISFUNC, (rl_command_func_t *)0x0 },		/* V */  { ISFUNC, rl_vi_next_word },			/* W */  { ISFUNC, rl_rubout },			/* X */  { ISFUNC, rl_vi_yank_to },			/* Y */  { ISFUNC, (rl_command_func_t *)0x0 },		/* Z */  /* Some more punctuation. */  { ISFUNC, (rl_command_func_t *)0x0 },		/* [ */  { ISFUNC, rl_vi_complete },			/* \ */  { ISFUNC, (rl_command_func_t *)0x0 },		/* ] */  { ISFUNC, rl_vi_first_print },		/* ^ */  { ISFUNC, rl_vi_yank_arg },			/* _ */  { ISFUNC, rl_vi_goto_mark },			/* ` */  /* Lowercase alphabet. */  { ISFUNC, rl_vi_append_mode },		/* a */  { ISFUNC, rl_vi_prev_word },			/* b */  { ISFUNC, rl_vi_change_to },			/* c */  { ISFUNC, rl_vi_delete_to },			/* d */  { ISFUNC, rl_vi_end_word },			/* e */  { ISFUNC, rl_vi_char_search },		/* f */  { ISFUNC, (rl_command_func_t *)0x0 },		/* g */  { ISFUNC, rl_backward_char },			/* h */  { ISFUNC, rl_vi_insertion_mode },		/* i */  { ISFUNC, rl_get_next_history },		/* j */  { ISFUNC, rl_get_previous_history },		/* k */  { ISFUNC, rl_forward_char },			/* l */  { ISFUNC, rl_vi_set_mark },			/* m */  { ISFUNC, rl_vi_search_again },		/* n */  { ISFUNC, (rl_command_func_t *)0x0 },		/* o */  { ISFUNC, rl_vi_put },			/* p */  { ISFUNC, (rl_command_func_t *)0x0 },		/* q */  { ISFUNC, rl_vi_change_char },		/* r */  { ISFUNC, rl_vi_subst },			/* s */  { ISFUNC, rl_vi_char_search },		/* t */  { ISFUNC, rl_vi_undo },			/* u */  { ISFUNC, (rl_command_func_t *)0x0 },		/* v */  { ISFUNC, rl_vi_next_word },			/* w */  { ISFUNC, rl_vi_delete },			/* x */  { ISFUNC, rl_vi_yank_to },			/* y */  { ISFUNC, (rl_command_func_t *)0x0 },		/* z */  /* Final punctuation. */  { ISFUNC, (rl_command_func_t *)0x0 },		/* { */  { ISFUNC, rl_vi_column },			/* | */  { ISFUNC, (rl_command_func_t *)0x0 },		/* } */  { ISFUNC, rl_vi_change_case },		/* ~ */  { ISFUNC, (rl_command_func_t *)0x0 },		/* RUBOUT */#if KEYMAP_SIZE > 128  /* Undefined keys. */  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },  { ISFUNC, (rl_command_func_t *)0x0 },

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩av一级片| 99国产一区二区三精品乱码| 欧美大片一区二区三区| 久久国产精品免费| 亚洲精品一区二区三区精华液| 久久狠狠亚洲综合| 日韩欧美卡一卡二| 7777女厕盗摄久久久| av一二三不卡影片| 欧美日韩精品高清| 成人国产精品免费观看视频| 天天操天天干天天综合网| 欧美激情艳妇裸体舞| 日韩欧美在线综合网| 91视频免费看| 国产伦精品一区二区三区视频青涩| 一区二区不卡在线视频 午夜欧美不卡在| 日韩亚洲欧美中文三级| 日本久久精品电影| 91精品国产综合久久婷婷香蕉| 99精品桃花视频在线观看| 欧美日韩国产首页在线观看| 欧美日韩亚洲综合一区二区三区| 懂色av一区二区三区免费观看| 日本不卡一二三| 亚洲一区二区美女| 日韩黄色片在线观看| 中文字幕一区不卡| 欧美一区二区视频在线观看2020| 亚洲美女淫视频| 欧美一区二区在线免费播放 | 国产一区999| 天堂va蜜桃一区二区三区漫画版| 亚洲欧美日韩电影| 亚洲欧美另类久久久精品2019| 久久久久久电影| 久久天天做天天爱综合色| 国产精品丝袜久久久久久app| 精品久久久久久综合日本欧美 | 激情综合网激情| 91精品福利在线| 美国毛片一区二区| 日韩精品一区二区三区中文精品 | 国产一区二区三区在线看麻豆| 国产精品久久久久久久午夜片 | 国产午夜精品一区二区三区四区| 91在线国产观看| 美腿丝袜亚洲色图| 亚洲少妇最新在线视频| 日韩欧美一区在线观看| 99精品热视频| 日韩精品欧美成人高清一区二区| 久久国产精品色| 日韩午夜精品电影| 国产精品久久久久婷婷二区次 | 不卡视频在线观看| 91在线小视频| 欧美一区二区二区| 中文字幕欧美日本乱码一线二线| 18欧美亚洲精品| 丝袜美腿亚洲色图| 色婷婷亚洲一区二区三区| 国产精品网站在线| 欧美一区二区免费| 色婷婷综合久久久| 国产高清成人在线| 日韩高清不卡在线| 国产精品国产馆在线真实露脸 | 国产麻豆精品在线观看| 亚洲成人精品一区二区| 国产精品国产精品国产专区不片| 精品国产一区二区三区不卡 | 欧美不卡123| 欧美熟乱第一页| 成人国产在线观看| 国产真实乱对白精彩久久| 五月天婷婷综合| 亚洲视频免费看| 中文字幕成人在线观看| 精品国产一二三区| 在线成人av网站| 在线精品视频一区二区三四 | 国产精品一区二区三区乱码| 日韩二区三区四区| 亚洲一级电影视频| 亚洲毛片av在线| 国产精品久久久久久福利一牛影视| 亚洲精品在线三区| 日韩一级二级三级| 337p亚洲精品色噜噜噜| 欧美三级韩国三级日本一级| 色先锋aa成人| 成人97人人超碰人人99| 国产成人亚洲综合色影视| 黑人巨大精品欧美一区| 麻豆成人综合网| 琪琪久久久久日韩精品| 丝袜脚交一区二区| 亚洲二区在线视频| 亚洲自拍偷拍九九九| 亚洲激情在线激情| 亚洲欧洲一区二区三区| 久久婷婷国产综合国色天香| 亚洲国产综合色| 欧美色国产精品| 国产精品99精品久久免费| 欧美精品一区二区三区很污很色的| 午夜精品一区二区三区三上悠亚| 91官网在线观看| 亚洲一区在线播放| 欧美色涩在线第一页| 亚洲成人av一区| 51精品国自产在线| 久久er精品视频| 国产精品久久久久久久久免费桃花 | 国产乱人伦精品一区二区在线观看| 青青草97国产精品免费观看无弹窗版| 水野朝阳av一区二区三区| 午夜精品久久久久久久久久| 亚洲高清不卡在线| 五月婷婷激情综合网| 日韩高清在线一区| 色婷婷av一区二区三区软件| 欧洲一区在线观看| 欧美日韩中文字幕一区| 欧美日韩国产精品自在自线| 欧美肥妇bbw| 日韩精品一区二区三区蜜臀| 精品国产一区二区亚洲人成毛片| 久久亚洲春色中文字幕久久久| 久久久99久久精品欧美| 国产精品久久久久一区二区三区 | 一区二区三区**美女毛片| 亚洲综合色区另类av| 五月激情六月综合| 免费在线观看一区| 国产一区二区在线影院| 成人精品电影在线观看| 色老汉av一区二区三区| 欧美日韩精品综合在线| 日韩欧美国产麻豆| 久久中文字幕电影| 国产精品国产三级国产普通话三级 | 久久久久久久久久久久电影| 国产精品女人毛片| 亚洲精品日产精品乱码不卡| 亚洲不卡一区二区三区| 激情综合亚洲精品| 97se狠狠狠综合亚洲狠狠| 欧美色网一区二区| 精品久久久久久综合日本欧美| 中文字幕第一页久久| 一区二区三区日韩欧美精品| 亚洲国产精品自拍| 国产精品午夜免费| 成人免费在线播放视频| 欧美精品一区二区精品网| 欧美性感一类影片在线播放| 成人教育av在线| 国产一区二区三区久久悠悠色av | 亚洲一区二区五区| 国产精品天天看| 国产亚洲综合av| 国产视频一区二区在线| 中文字幕不卡在线| 国产日韩在线不卡| 亚洲精品欧美二区三区中文字幕| 日韩激情一二三区| 丁香天五香天堂综合| 欧美日韩国产片| 国产日韩欧美激情| 亚洲高清免费视频| 国产成人精品免费一区二区| 欧美色综合天天久久综合精品| 久久久亚洲国产美女国产盗摄 | 国产精品久久久久久久久久久免费看 | 久久电影网电视剧免费观看| 99久久久久久| 日韩一级免费一区| 亚洲精品视频一区二区| 国产综合久久久久影院| 日本韩国一区二区三区| 精品成人a区在线观看| 一区二区三区免费| 国产精品自在在线| 欧美日韩亚洲综合在线 欧美亚洲特黄一级 | 精品国产3级a| 亚洲韩国一区二区三区| 成人国产亚洲欧美成人综合网 | 精品国产91亚洲一区二区三区婷婷| 一区二区三区在线观看欧美| 国产麻豆91精品| 337p亚洲精品色噜噜狠狠| 一区在线播放视频| 国产乱淫av一区二区三区| 欧美精品日日鲁夜夜添| 亚洲欧美国产77777| 国产精品69久久久久水密桃| 欧美顶级少妇做爰| 亚洲欧美一区二区久久|