(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
| <link rel="import" href="../core-icon-button/core-icon-button.html"> | |
| <link rel="import" href="../core-toolbar/core-toolbar.html"> | |
| <link rel="import" href="../core-header-panel/core-header-panel.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; |
| "https://realpython.com/blog/python/vim-and-python-a-match-made-in-heaven/ | |
| "https://github.com/mbrochh/vim-as-a-python-ide/blob/master/.vimrc | |
| set nocompatible " required | |
| filetype off " required | |
| " set the runtime path to include Vundle and initialize | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| " alternatively, pass a path where Vundle should install plugins |
| *.apk | |
| # =============== # | |
| # Unity generated # | |
| # =============== # | |
| Temp/ | |
| Library/ | |
| # ===================================== # | |
| # Visual Studio / MonoDevelop generated # |
| #! /bin/bash | |
| # More flags https://ffmpeg.org | |
| # H264 sample : ffmpeg -i input -c:v libx264 -preset slow -crf 22 -c:a copy output.mkv | |
| function convert_all_to_mp4() { | |
| for file in *.mp4 ; do | |
| local bname=$(basename "$file" .mp4) | |
| local mp4name="$bname.mp4" | |
| ffmpeg -i "$file" -c:v libx264 encoded/"$mp4name" | |
| done |
| { | |
| "git.ignoreMissingGitWarning": true, | |
| "workbench.colorTheme": "One Dark Pro", | |
| "editor.fontFamily": "Hack", | |
| "[elm]": { | |
| "editor.formatOnSave": true | |
| }, | |
| "vim.otherModesKeyBindingsNonRecursive": [ | |
| { | |
| "before": [ |
Title: Tmux project sessions
Date: 2014-12-24 17:00
Tags: Tmux, learn-X-in-Y-minutes
Author: K. Y. Ng
This is a tutorial for setting up Tmux for saving terminal project sessions.
Tmux helps you emulate several shell sessions within the same terminal
window.
| // Add our dependencies | |
| var gulp = require('gulp'), // Main Gulp module | |
| concat = require('gulp-concat'), // Gulp File concatenation plugin | |
| open = require('gulp-open'), // Gulp browser opening plugin | |
| connect = require('gulp-connect'); // Gulp Web server runner plugin | |
| // Configuration | |
| var configuration = { | |
| paths: { |