Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Suggested modification #262

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions lib/config.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,16 @@ module.exports =
hidden unless manually clicking the `Show build log` icon.'
type: 'boolean'
default: false
hide_panel:
title: 'Hide LaTeX panel'
order: 13
description: 'Enable this option to always hide the LaTeX panel at the \
bottom.'
type: 'boolean'
default: false
file_ext_to_clean:
title: 'Files to clean'
order: 13
order: 14
description: 'All files under the LaTeX project root directory with the set\
extensions will be removed when cleaning LaTeX project. \
Multiple file extensions are joint with commas.'
Expand All @@ -107,14 +114,14 @@ module.exports =
*.fdb_latexmk'
clean_after_build:
title: 'Clean LaTeX auxiliary files after building process'
order: 14
order: 15
description: 'Clean all auxiliary files after building LaTeX project by \
the defined file extensions.'
type: 'boolean'
default: false
delayed_minimap_refresh:
title: 'Delay the refresh actions of atom-minimap'
order: 15
order: 16
description: 'Delay the refresh actions of atom-minimap upon typing. This \
setting can reduce the keystroke stuttering in very long \
LaTeX source files caused by minimap extension. Reload Atom \
Expand All @@ -123,7 +130,7 @@ module.exports =
default: false
completion_suggestion_priority:
title: 'autocomplete-plus suggestion priority'
order: 16
order: 17
description: 'Specify the sort order of autocompletion suggestions \
provided by atom-latex.
Note the default providers like snippets have priority of \ `1`. Reload Atom to take effect.'
Expand Down
11 changes: 4 additions & 7 deletions settings/language-latex.cson
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,10 @@
'extraWordCharacters': '-:_/'
'bracket-matcher':
'autocompleteCharacters': [
'$$',
'``',
'{}',
'()',
'[]',
'""',
'\'\''
"[]"
"{}"
"$$"
"`'"
]
'.text.tex.tex':
'editor':
Expand Down