v(*)"+y - will copy lines selected in Visual mode.
zfat or zfit - folds HTML by indentation?
:s%/foo/bar/g - Change each 'foo' to 'bar', (% means in every line)
| =Navigating= | |
| visit('/projects') | |
| visit(post_comments_path(post)) | |
| =Clicking links and buttons= | |
| click_link('id-of-link') | |
| click_link('Link Text') | |
| click_button('Save') | |
| click('Link Text') # Click either a link or a button | |
| click('Button Value') |
| :: http://technet.microsoft.com/en-us/library/bb490894.aspx | |
| :: F7 = history | |
| :: Alt+F7 = history -c | |
| :: F8 = Ctrl+R | |
| :: Use & to run multiple commands e.g.: command1 & command2 | |
| :: | |
| :: 1. Go to your Windows folder and find regedit.exe | |
| :: 2. Head over to: | |
| :: HKEY_LOCAL_MACHINE\Software\Microsoft\Command | |
| :: or |
| def cls | |
| system ('cls') #for cmd | |
| system ('clear') #for mac / linux | |
| end | |
| class String | |
| def green; "\033[32m#{self}\033[0m" end #< colorizing all instances of the main class String and method green. Solution taken from here: http://stackoverflow.com/questions/1489183/colorized-ruby-output | |
| def red; "\033[31m#{self}\033[0m" end | |
| def brown; "\033[33m#{self}\033[0m" end |