Whenever I use the autocomplete for atom it doesn't include the brackets. For example if i start typing "print" I hit enter and it enters print but doesn't include the brackets.
标签:
atom-editor
相关问题
- Virtual Environment and Atom
- Lookbehind assertion regex in atom editor
- ES6: What does “import $ from 'jquery'” re
-
File “
”, line 1, in NameError: na - pip installed pylint cannot be found
相关文章
- Flow was not found when attempting to start Atom/N
- Open Atom editor from git shell
- Change keyboard shortcut to “Run Script” in Atom I
- Create Snippet with variables in Atom
- Can't add a new component to my angular 2 app
- Why can't Python run in Atom?
- Atom editor does not reload changed file
- Adding New Conda Env to Hydrogen for Atom
The default Python snippets only supports the
print
keyword, not theprint()
function. Since I haven't found another package that does, you're problably best off adding a snippet (Atom > Open Your Snippets) such as:The prefix will trigger the snippet defined in the body, in case prefer to call it differently.