mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Adding default autocomplete commands w/ argument options
This commit is contained in:
parent
dcaa35f9f1
commit
769875c5d5
2 changed files with 90 additions and 2 deletions
|
@ -1,9 +1,10 @@
|
|||
define [
|
||||
"ide/editor/directives/aceEditor/auto-complete/SuggestionManager"
|
||||
"ide/editor/directives/aceEditor/auto-complete/SnippetManager"
|
||||
"ide/editor/directives/aceEditor/auto-complete/StaticSuggestionManager"
|
||||
"ace/ace"
|
||||
"ace/ext-language_tools"
|
||||
], (SuggestionManager, SnippetManager) ->
|
||||
], (SuggestionManager, SnippetManager, StaticSuggestionManager) ->
|
||||
Range = ace.require("ace/range").Range
|
||||
aceSnippetManager = ace.require('ace/snippets').snippetManager
|
||||
|
||||
|
@ -44,6 +45,8 @@ define [
|
|||
|
||||
SnippetCompleter = new SnippetManager()
|
||||
|
||||
StaticCommandCompleter = new StaticSuggestionManager()
|
||||
|
||||
labelsManager = @labelsManager
|
||||
LabelsCompleter =
|
||||
getCompletions: (editor, session, pos, prefix, callback) ->
|
||||
|
@ -112,7 +115,11 @@ define [
|
|||
else
|
||||
callback null, result
|
||||
|
||||
@editor.completers = [@suggestionManager, SnippetCompleter, ReferencesCompleter, LabelsCompleter]
|
||||
@editor.completers = [@suggestionManager,
|
||||
SnippetCompleter,
|
||||
StaticCommandCompleter,
|
||||
ReferencesCompleter,
|
||||
LabelsCompleter]
|
||||
|
||||
disable: () ->
|
||||
@editor.setOptions({
|
||||
|
|
|
@ -0,0 +1,81 @@
|
|||
define () ->
|
||||
noArgumentCommands = [
|
||||
'item', 'hline', 'lipsum', 'centering', 'noindent', 'textwidth', 'draw',
|
||||
'maketitle', 'newpage', 'verb', 'bibliography', 'fi', 'hfill', 'par',
|
||||
'in', 'sum', 'cdot', 'alpha', 'ldots', 'else', 'linewidth', 'left',
|
||||
'right', 'today', 'clearpage', 'newline', 'endinput', 'mu',
|
||||
'tableofcontents', 'vfill', 'bigskip', 'fill', 'cleardoublepage',
|
||||
]
|
||||
singleArgumentCommands = [
|
||||
'chapter', 'usepackage', 'section', 'label', 'textbf', 'subsection',
|
||||
'vspace', 'cite', 'textit', 'documentclass', 'includegraphics', 'input',
|
||||
'emph','caption', 'ref', 'title', 'author', 'texttt', 'include',
|
||||
'hspace', 'bibitem', 'url', 'large', 'subsubsection', 'textsc', 'date',
|
||||
'footnote', 'small', 'thanks', 'underline', 'graphicspath', 'pageref',
|
||||
'section*', 'subsection*', 'subsubsection*', 'sqrt', 'text',
|
||||
'normalsize', 'Large', 'paragraph', 'pagestyle', 'thispagestyle',
|
||||
'bibliographystyle',
|
||||
]
|
||||
doubleArgumentCommands = [
|
||||
'newcommand', 'frac', 'renewcommand', 'setlength', 'href', 'newtheorem',
|
||||
]
|
||||
tripleArgumentCommands = [
|
||||
'addcontentsline', 'newacronym', 'multicolumn'
|
||||
]
|
||||
special = ['def', 'let', 'LaTeX']
|
||||
|
||||
noArgumentCommands = for com in noArgumentCommands
|
||||
{
|
||||
caption: "\\#{com}"
|
||||
snippet: "\\#{com}"
|
||||
meta: "cmd"
|
||||
}
|
||||
singleArgumentCommands = for com in singleArgumentCommands
|
||||
{
|
||||
caption: "\\#{com}{}"
|
||||
snippet: "\\#{com}{$1}"
|
||||
meta: "cmd"
|
||||
}
|
||||
doubleArgumentCommands = for com in doubleArgumentCommands
|
||||
{
|
||||
caption: "\\#{com}{}{}"
|
||||
snippet: "\\#{com}{$1}{$2}"
|
||||
meta: "cmd"
|
||||
}
|
||||
tripleArgumentCommands = for com in tripleArgumentCommands
|
||||
{
|
||||
caption: "\\#{com}{}{}{}"
|
||||
snippet: "\\#{com}{$1}{$2}{$3}"
|
||||
meta: "cmd"
|
||||
}
|
||||
special = for com in special
|
||||
if com == 'def'
|
||||
{ #should be improved
|
||||
caption: "\\def{}"
|
||||
snippet: "\\def$1{$2}"
|
||||
meta: "cmd"
|
||||
}
|
||||
else if com == 'let'
|
||||
{ #should be improved
|
||||
caption: "\\let"
|
||||
snippet: "\\let"
|
||||
meta: "cmd"
|
||||
}
|
||||
else if com == 'LaTeX'
|
||||
{
|
||||
caption: "\\LaTeX{}"
|
||||
snippet: "\\LaTeX{}"
|
||||
meta: "cmd"
|
||||
}
|
||||
|
||||
staticCommands = [].concat(noArgumentCommands,
|
||||
singleArgumentCommands,
|
||||
doubleArgumentCommands,
|
||||
tripleArgumentCommands,
|
||||
special)
|
||||
|
||||
class StaticSuggestionManager
|
||||
getCompletions: (editor, session, pos, prefix, callback) ->
|
||||
callback null, staticCommands
|
||||
|
||||
return StaticSuggestionManager
|
Loading…
Reference in a new issue