Skip to content

Instantly share code, notes, and snippets.

@berfarah
Created July 18, 2014 23:54
Show Gist options
  • Save berfarah/c338c277e29649bf39aa to your computer and use it in GitHub Desktop.
Save berfarah/c338c277e29649bf39aa to your computer and use it in GitHub Desktop.
Sublime Text: Copy paste entire line without \n
// Save this to Packages/User/macros/...
[
{
"args":
{
"to": "line"
},
"command": "expand_selection"
},
{
"args": null,
"command": "split_selection_into_lines"
},
{
"args": null,
"command": "copy"
}
]
{ "keys": ["super+shift+c"], "command": "run_macro_file", "args": {"file": "Packages/User/macros/copy_line_without_newline.sublime-macro"} }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment