Skip to content

Instantly share code, notes, and snippets.

@zenithtekla
Last active January 18, 2018 04:36
Show Gist options
  • Save zenithtekla/bf7934d36ea98270f7ff05a07b9512af to your computer and use it in GitHub Desktop.
Save zenithtekla/bf7934d36ea98270f7ff05a07b9512af to your computer and use it in GitHub Desktop.
Sublime_user_setting
// Settings in here override those in "Default/Preferences.sublime-settings",
// and are overridden in turn by file type specific settings.
{
// List any packages to ignore here. When removing entries from this list,
// a restart may be required if the package contains plugins.
"update_check": false,
"ignored_packages": ["Vintage"],
"default_encoding": "UTF-8",
"save_on_focus_lost": true,
"trim_trailing_white_space_on_save": true,
"auto_close_tags": true,
"auto_complete": true,
// Fold buttons are the triangles shown in the gutter to fold regions of text
"fold_buttons": true,
// Hides the fold buttons unless the mouse is over the gutter
"fade_fold_buttons": true,
// The number of spaces a tab is considered equal to
"tab_size": 2,
// Set to false to disable detection of tabs vs. spaces on load
"detect_indentation": true,
// Calculates indentation automatically when pressing enter
"auto_indent": true,
// Makes auto indent a little smarter, e.g., by indenting the next line
// after an if statement in C. Requires auto_indent to be enabled.
"smart_indent": true,
// Adds whitespace up to the first open bracket when indenting. Requires
// auto_indent to be enabled.
"indent_to_bracket": false,
// Trims white space added by auto_indent when moving the caret off the
// line.
"trim_automatic_white_space": true,
// Controls auto pairing of quotes, brackets etc
"auto_match_enabled": true,
// Set to false to disable underlining the brackets surrounding the caret
"match_brackets": true,
// Set to false if you'd rather only highlight the brackets when the caret is
// next to one
"match_brackets_content": true,
// Set to false to not highlight square brackets. This only takes effect if
// match_brackets is true
"match_brackets_square": true,
// Set to false to not highlight curly brackets. This only takes effect if
// match_brackets is true
"match_brackets_braces": true,
// Set to false to not highlight angle brackets. This only takes effect if
// match_brackets is true
"match_brackets_angle": false,
// Enable visualization of the matching tag in HTML and XML
"match_tags": true,
// Highlights other occurrences of the currently selected text
"match_selection": true,
}
Package Control Messages
========================
xml2json plugin of SublimeText3
--------
## Usage :
- use `cmd+shift+P` then `xml2json` or `xml2json pretty` or `json2xml` or `json2xml pretty`
- or goto menubar `Tools` then `xml2json`
- or bind some key in your user key binding:
```js
{
"keys": ["ctrl+alt+shift+j"],
"command": "xml2json"
},
{
"keys": ["ctrl+alt+shift+l"],
"command": "json2xml"
}
```
@zetekla
Copy link

zetekla commented Jan 18, 2018

—– BEGIN LICENSE Sublime Text3 v 3143 —–
TwitterInc
200 User License
EA7E-890007
1D77F72E 390CDD93 4DCBA022 FAF60790
61AA12C0 A37081C5 D0316412 4584D136
94D7F7D4 95BC8C1C 527DA828 560BB037
D1EDDD8C AE7B379F 50C9D69D B35179EF
2FE898C4 8E4277A8 555CE714 E1FB0E43
D5D52613 C3D12E98 BC49967F 7652EED2
9D2D2E61 67610860 6D338B72 5CF95C69
E36B85CC 84991F19 7575D828 470A92AB
—— END LICENSE ——

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment