Shortcuts for tabs:
Ctrl + Alt + PageDown     Switches to the next tab to the left.
Ctrl + Alt + PageDown     Switches to the next tab to the right.
Ctrl + W                                Close tab.
Ctrl + Shift + L                Save all tabs.
Ctrl + Shift + W              Close all tabs. 
Alt + n                                Jump to nth tab.

Shortcuts for working with files:
Ctrl + N                  Create a new document.
Ctrl + O                    Open a document.
Ctrl + L                  Open a location.
Ctrl + S                    Save the current document to disk.
Ctrl + Shift + S    Save the current document with a new filename.
Ctrl + P                    Print the current document.
Ctrl + Shift + P    Print preview.
Ctrl + W                    Close the current document.
Ctrl + Q                    Quit Gedit.

Shortcuts for editing documents:
Ctrl + Z                    Undo the last action.
Ctrl + Shift + Z    Redo the last undone action .
Ctrl + X                    Cut the selected text or region and place it on the clipboard.
Ctrl + C                  Copy the selected text or region onto the clipboard.
Ctrl + V                    Paste the contents of the clipboard.
Ctrl + A                    Select all.

Shortcuts for showing and hiding panes:
F9                                Show/hide the side pane.
Ctrl + F9                    Show/hide the bottom pane.

Shortcuts for searching:

Ctrl + F                    Find a string.
Ctrl + G                    Find the next instance of the string.
Ctrl + Shift + G    Find the previous instance of the string.
Ctrl + K                    Interactive search.
Ctrl + H                    Search and replace.
Ctrl + Shift + K    Clear highlight.
Ctrl + I                    Goto line.

Shortcuts for tools:
Shift + F7                  Check spelling (with plugin).
Alt + F12                        Remove trailing spaces (with plugin).
Ctrl + T                        Indent (with plugin).
Ctrl + Shift + T        Remove Indent (with plugin).
F8                                  Run "make" in current directory (with plugin).
Ctrl + Shift + D        Directory listing (with plugin).

Shortcuts for help:
F1    Open gedit's user manual.

linux -- gedit快捷键的更多相关文章

  1. Linux 命令快捷键

    Linux 命令快捷键 tab 自动补齐(有不知道的吗)Ctrl+u 删除(剪切)此处至开始所有内容 Ctrl+k 删除从光标所在位置到行末 快速命令行 – 快捷方式• history 搜索历史执行过 ...

  2. linux常用快捷键

    linux常用快捷键:ctrl+c 强制终止当前命令ctrl+l 清屏ctrl+a 光标移动到命令行首ctrl+e 光标移动到命令行尾ctrl+u 从光标合所在的位置删除到行首ctrl+z 把命令放到 ...

  3. linux 相关快捷键

    linux 相关快捷键 http://linux.chinaunix.net/begin/2004-10-05/34.shtml#_Toc41417098 1.使用虚拟控制台登录后按“Alt+F2”键 ...

  4. Linux 用户必须知道的 14 个常用 Linux 终端快捷键

    简介:以下是一些每个 Linux 用户必须使用的键盘快捷键. 使用命令行时,这些 Linux 快捷键将提升你的工作效率和效率. 你知道什么把专业用户和普通用户分开的吗?掌握键盘快捷键. 好的!这虽不是 ...

  5. Linux使用快捷键,who命令,rm命令,ps命令,cd,命令kill命令,find命令,grep命令,tar命令(gz、tar、bz2),用户管理,vim配置的一部分,相关命令

    1.进入Ubuntu开场后的终端窗口的快捷键是:           ctrl + alt+t:通过这个命令能够打开终端. ctrl + alt+t:通过这个命令能够打开终端. 再开一个tab选项卡式 ...

  6. Linux 终端快捷键整理

    一.历史命令相关快捷键 快捷键 说明 ↑.↓ 显示历史命令 !! 执行上一个命令 !n 执行历史命令中第 n 条命令 !-n 执行历史命令中倒数第 n 条命令 二.移动相关快捷键 快捷键 说明 Ctr ...

  7. Linux常用快捷键、文件管理和查询

    有话要说 为什么要用Linux?要用Linux的原因太多,想说说不完啊.如果你说用Linux只是为了装逼,那证明你真的还很菜.不排除有装逼了因素,那也只占非常少的比例,可以忽略不计.我们反问一下,为什 ...

  8. linux系统快捷键使用

    本文记录linux系统中快捷键的使用 Ctrl + l 清屏,相当于clear命令Ctrl + o 执行当前命令,并重新显示本命令Ctrl + s 阻止屏幕输出,锁定Ctrl + q 允许屏幕输出Ct ...

  9. Linux常用快捷键以及如何查看命令帮助

    1.1    Linux系统快速操作常用快捷键 快捷键名称 快捷作用 Ctrl + a 将光标移至行首 Ctrl + e 将光标移至行尾 Ctrl + u 前提光标在行尾,则清除当前行所有的内容(有空 ...

随机推荐

  1. python标准库介绍——17 tempfile 模块详解

    ==tempfile 模块== [Example 2-6 #eg-2-6] 中展示的 ``tempfile`` 模块允许你快速地创建名称唯一的临时文件供使用. ====Example 2-6. 使用 ...

  2. 巧用tail查看软件的安装进程

    我在使用perlbrew安装perl的时候,学到的一招,呵呵. 有时候,安装软件的时候,特别是手动安装的时候,没有什么提示信息,只能干等着,其实,可以使用tail命令来跟踪安装日志的尾部,来观察安装的 ...

  3. 教你轻松自己定义ViewPagerIndicator

    ViewPagerIndicator集成分页指示器.事实上就是标题栏和ViewPager的联动效果,大家先看一下效果图直观了解:(图侵删) 这篇文章将会教大家怎么简单高速地制作自己的ViewPager ...

  4. python super()使用详解

    1.super的作用调用父类方法2.单继承使用示例 #coding:utf-8 #单继承 class A(object): def __init__(self): self.n=2 def add(s ...

  5. spring整合kafka项目生产和消费测试结果记录(一)

    使用spring+springMVC+mybatis+kafka做了两个web项目,一个是生产者,一个是消费者. 通过JMeter测试工具模拟100个用户并发访问生产者项目,发送json数据给生产者的 ...

  6. UBuntu14.04下安装和卸载Qt5.3.1

    安装: 1. Qt5.3.1下载地址为:http://qt-project.org/,选择”Qt 5.3.1 for Linux 32-bit”版本,文件名是”qt-opensource-linux- ...

  7. Oracle快速测试连接是否成功

    Oracle 客户端建立了TNS连接后,可以快速查看连接是否成功. 1.在cmd中执行命令tnsping orcl(全局数据库名称),即可.以下是命令执行后的示例. 2.如果上一步成功,可以进一步执行 ...

  8. Frosh Week

    Problem Description During Frosh Week, students play various fun games to get to know each other and ...

  9. python 读取文件、并以十六进制的方式写入到新文件

    #!/usr/bin/env python infile = file("in.mp3","rb") outfile = file("out.txt& ...

  10. iOS开关按钮UISwitch控件

    开关按钮UISwitch 在ViewController.h里面 ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 #import <UIKit/UIKit ...