Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |
| let mapleader = "," | |
| " Mappings | |
| map <Leader>r reloadTabUncached | |
| map <Leader>x :restore<Space> | |
| map <C-b> scrollFullPageUp | |
| map <C-f> scrollFullPageDown | |
| map <C-d> scrollPageDown | |
| map <C-u> scrollPageUp |
| git fetch --all | |
| git reset --hard origin/master |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |
| --colour --format documentation |
| group :development do | |
| end | |
| group :test do | |
| gem 'rspec-rails' | |
| gem 'cucumber-rails' | |
| gem 'capybara' | |
| gem 'database_cleaner' | |
| gem 'factory_girl_rails' | |
| gem 'email_spec' |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| module Filterable | |
| extend ActiveSupport::Concern | |
| module ClassMethods | |
| # filter=[created|by_phone=922480|by_id=100..1000] | |
| def filter(filtering_params) | |
| results = self.where(nil) | |
| if filtering_params | |
| filters = filtering_params.gsub(/[\[\]\{\}\'\"\(\)]/, '').split(/[\|]/) |
| brew install macvim --with-cscope --with-python3 --with-lua --override-system-vim --HEAD |