gpt4 book ai didi

atom-editor - Atom -- 片段不起作用

转载 作者:行者123 更新时间:2023-12-01 12:20:25 25 4
gpt4 key购买 nike

以下是我在snippets.cson 文件中编写的两个片段:

'.source.python':
'print statement':
'prefix': 'pr'
'body' : 'print "${1:Hello world}"'


'.source.python':
'Argument variables import':
'prefix' : 'argv'
'body' : 'from sys import argv'

第一个不起作用,但第二个起作用。请帮忙。

附言。

当我第一次在我的机器上安装 atom 时,snippets 文件是空白的。我使用 Ubuntu 16.04。这是正常的吗?

最佳答案

我相信您的问题的根源在于您的范围 .source.python被宣布两次。

首先回答你的第二个问题,不,当我第一次打开它时,我的snippets.cson 文件不是空白的。相反,它包含以下内容:

# Your snippets
#
# Atom snippets allow you to enter a simple prefix in the editor and hit tab to
# expand the prefix into a larger code block with templated values.
#
# You can create a new snippet in this file by typing "snip" and then hitting
# tab.
#
# An example CoffeeScript snippet to expand log to console.log:
#
# '.source.coffee':
# 'Console log':
# 'prefix': 'log'
# 'body': 'console.log $1'
#
# Each scope (e.g. '.source.coffee' above) can only be declared once.
#
# This file uses CoffeeScript Object Notation (CSON).
# If you are unfamiliar with CSON, you can read more about it in the
# Atom Flight Manual:
# http://flight-manual.atom.io/using-atom/sections/basic-customization/#_cson

(不过,这是在 MacOS 上)。

请注意它如何指示您每个范围只能声明一次。我认为如果您将两个片段修改为包含在同一范围内,它们将按预期工作。

更改您的 snippets.cson以下似乎对我有用:
'.source.python':
'print statement':
'prefix': 'pr'
'body' : 'print "${1:Hello world}"'

'Argument variables import':
'prefix' : 'argv'
'body' : 'from sys import argv'

制作 .source.python 后,我可以从片段导入菜单中访问这两个片段。范围唯一。

关于atom-editor - Atom -- 片段不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44762160/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com