Inspired by vimcast article
This makes it more clear which split a file will be opened in.
Use rbgrouleff/bclose.vim to close the buffer and not break splits.
Inspired by vimcast article
This makes it more clear which split a file will be opened in.
Use rbgrouleff/bclose.vim to close the buffer and not break splits.
| # It's sort of difficult to make a non-UTF-8 string in | |
| # ruby that contains characters that aren't in UTF-8. | |
| # Here's how I did it. | |
| # 0x89 isn't allowed in UTF-8 | |
| bad_chars = [0x89].pack("c*").force_encoding("ISO-8859-1") |
| """ | |
| This fabric script automates the creation of a virtual environment and a Django | |
| project. The result will be virtual environtment with the name of the project. | |
| The folder namer where the project code will be placed is specified in | |
| SOURCE_DIRECTORY_NAME, a static root folder will be created and settings.py | |
| will be updated. | |
| """ | |
| try: | |
| from fabric.api import env, run, local | |
| from fabric.context_managers import lcd, prefix |
| package main | |
| import ( | |
| "os" | |
| "fmt" | |
| ) | |
| type Fetcher interface { | |
| // Fetch returns the body of URL and | |
| // a slice of URLs found on that page. |