ubuntu terminal shortcut

Keyboard shortcuts

Keyboard shortcuts are combinations of keys that allow you to perform actions, such as opening the settings dialog or accessing a feature inside Terminal quickly. These shortcuts can be modified to suit your preferences.

To change a keyboard shortcut:

  1. Select Edit ? Preferences ? Shortcuts.
  2. Select the shortcut that you wish to edit by clicking on it.
  3. Once the shortcut is selected, click on the shortcut key combination to edit it.
  4. Press your desired shortcut key combination as you would enter it to use it. The keys that you can use include Alt,Alt Gr, Ctrl, Shift, number and letter keys.

    Mnemonic key combinations, such as Alt+F will not work.

  5. Once you have entered your new shortcut, it will automatically be saved and you should see it in the list next to the corresponding action.

To disable a shortcut, edit it and press the Backspace instead of the new shortcut.

File shortcuts

The default shortcuts for options under File menu are:


Action


Keyboard Shortcut


New Tab


Shift+Ctrl+T


New Window


Shift+Ctrl+N


Close Tab


Shift+Ctrl+W


Close Window


Shift+Ctrl+Q

Edit shortcuts

The default shortcuts for options under Edit menu are:


Action


Keyboard Shortcut


Copy


Ctrl+Shift+C


Paste


Ctrl+Shift+V

View shortcuts

The default shortcuts for options in the View menu are:


Action


Keyboard Shortcut


Full Screen


F11


Zoom In


Ctrl++


Zoom Out


Ctrl+-


Normal Size


Ctrl+0

Tab shortcuts

The default shortcuts for working with tabs are:


Action


Keyboard Shortcut


Switch to Previous Tab


Ctrl+Page Up


Switch to Next Tab


Ctrl+Page Down


Move Tab to the Left


Shift+Ctrl+Page Up


Move Tab to the Right


Shift+Ctrl+Page Down


Switch to Tab 1


Alt+1


Switch to Tab 2


Alt+2


Switch to Tab 3


Alt+3


Switch to Tab 4


Alt+4


Switch to Tab 5


Alt+5


Switch to Tab 6


Alt+6


Switch to Tab 7


Alt+7


Switch to Tab 8


Alt+8


Switch to Tab 9


Alt+9


Switch to Tab 10


Alt+0

Help shortcuts

The default shortcuts for accessing items in the Help menu are:


Action


Keyboard Shortcut


Contents


F1

Other

There are also some shortcuts that cannot be edited:


Action


Keyboard Shortcut


Scroll up by one line


Shift+Ctrl+Up


Scroll down by one line


Shift+Ctrl+Down

Bash shortcuts

These are Bash shortcuts. Bash is usually the default shell.

Bash shell specific keyboard shortcuts are:


Action


Keyboard shortcut


Erase a word


Ctrl+W


Erase a line


Ctrl+U


Move to the start of the line


Ctrl+A


Move to the end of the line


Ctrl+E


Move back one character


Ctrl+B


Move back one word


Alt+B


Move forward one character


Ctrl+F


Move forward one word


Alt+F


Delete from the cursor to the beginning of the line.


Ctrl+u


Delete from the cursor to the end of the line.


Ctrl+K


Delete from the cursor to the start of the word.


Ctrl+W


Delete previous word


Esc+Del or Esc+Backspace


Pastes text from the clipboard.


Ctrl+Y


Clear the screen leaving the current line at the top of the screen.


Ctrl+L


Reverse incremental search of history


Ctrl+R


Reverse non-incremental search of history


Alt+P

Ubuntu终端常用的快捷键

时间: 2024-10-03 14:03:01

ubuntu terminal shortcut的相关文章

ubuntu terminal 介绍

ubuntu的terminal 1.调出方法 windows键+T 2.终端显示内容 3. 查看当前所在目录的绝对路径--pwd命令 eg1: eg2: linux严格区分大小写 4. 更改/进入目录--cd命令 (1)cd /:进入根目录 (2)cd 目录名:进入指定目录 (3)cd(或者:cd ~):进入当前用户的主目录 注:常见目录表示方法 /:根目录 .:当前目录或者本目录 ..:当前目录的上级目录 /目录名1:根目录下的目录名1 /目录名1//目录名2:根目录下的目录名1下的目录名2

Ubuntu 14.04,root the Nexus 7 (2013).

Nexus用着用着就卡的一笔啊.发现它有很多自启软件. 我以前的理解是,自启软件的意思就是开机自启,实际上呢,就算android device 联网or解锁进入桌面,这些不同的事件都会引发特定的应用. 然后我果断采用360神器来禁止自启,它告诉我说,未获得root权限... 于是,我但疼地开始root,因为我的os是ubuntu,于是先在aol.com(它的默认搜索引擎是google..mainland最近又使不了google欸...)搜索root nexus 7 2013,ubuntu. 然后

Ubuntu进阶学习,指令迅速查询,Bug迅速查询(Ctrl+F)

There is some notes while I am learning Ubuntu Operate System! (Ask Ubuntu) 1-- Hard link : ln command have different parm. Hard link means that the two files is connect together for backup the original files.If you edit any of the two files , it wil

Ubuntu 18.04 手动编译安装 ffmpeg

ffmpeg 是一个由提供对视频.音频和其他多媒体流文件进行处理功能的库和程序构成的自由软件项目,其常被用于适用于不同格式的音频和视频的录影.转换和流处理等场合.这里记录在 Ubuntu 18.04 平台下安装 ffmpeg 的过程.( 注:ffmpeg 目前已经可以通过 apt 直接进行安装,见最后 ) 安装过程 a.在 ffmpeg 官网上下载对应的安装压缩包,笔者使用的是 ffmpeg-4.1.tar.bz2 ,将其解压至用户主目录下. tar -xvjf ffmpeg-4.1.tar.b

我的cheatsheet v2

简单点,说话的方式简单点... 工作环境部署 workspace deployment OS X 安装软件: iterm2 导入配置文件 chrome 同步 pycharm pro 破解 搜狗输入法 chsh -s /bin/zshc sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" curl https://j.mp/spf13-vim3 -L >

Ubuntu16.04下使用sublime text3搭建Python IDE

本来是想用pycharm,但你看它的内存要求,我的虚拟机一共也就1G Vim太别扭了,就算有代码颜色,不能自动对齐,不能规范格式,跳转到函数定义,显示文档,要配置起来太费劲,所以就尝试着用sublime text3 来搭建Python IDE 安装sublime text3 目前最简单的方法是通过ppa安装,打开终端,输入以下命令: sudo add-apt-repository ppa:webupd8team/sublime-text-3 sudo apt-get update sudo ap

SublimeREPL配置Python3开发

首先什么是REPL? A Read-Eval-Print-Loop (REPL) is available both as a standalone program and easily includable in other programs. REPL provides a way to interactively run JavaScript and see the results. It can be used for debugging, testing, or just trying

搭建Linux开发环境

开发环境(Software Development Environment)是指在基本硬件和宿主软件的基础上,为支持系统软件和应用软件的工程化开发和维护而使用的一组软件,简称SDE.它由软件工具和环境集成机制构成,前者用以支持软件开发的相关过程.活动和任务,后者为工具集成和软件的开发.维护及管理提供统一的支持. 尤其作为一个嵌入式开发人员,由于嵌入式系统的特点,必须要有一套嵌入式开发环境.嵌入式开发环境多种多样,但Linux开发环境则较为普遍.搭建Linux开发环境,首先需要安装Linux操作系

How to build a GUI in ROS with Qt / C++

p { margin-bottom: 0.1in; direction: ltr; line-height: 120%; text-align: left; widows: 2; orphans: 2 } a:link { color: #0000ff } Overview A graphical user interface or GUI enables people especially end users to interactive with ROS through graphical