VS2008 删除了 .js 文件中的缩进

发布于 2024-07-14 14:17:22 字数 98 浏览 4 评论 0原文

我正在使用 ExtJs 框架,因此必须在 vs2008 中编写大量 JS,但是,VS2008 不断删除我的缩进,这让我发疯。

如何删除“自动缩进”功能? 谢谢

I'm working with ExtJs framework and so have to code a lot of JS in vs2008, however, VS2008 keeps removing my indentation and its driving me nuts.

How do I remove the "auto-indent" feature? Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

葵雨 2024-07-21 14:17:22

简单的答案是:关闭“格式设置”选项卡中的“自动格式设置”

摘自文档此处


JScript 特定设置可在新的“工具”/“选项”/“文本编辑器”/“JScript”节点下使用

。这四个选项卡是:

一般 & 选项卡

此处的选项是所有编辑器(包括 JScript)的标准选项

格式

此选项卡专为 JScript 设计,包含大多数 JScript 特定格式功能

自动格式设置:此部分参考当用户“实时”输入和操作代码时,将发生格式化。 基本上,格式化是在用户构建代码时执行的。

  • Format Completed Line on Enter(默认打开):按下 {ENTER} 后,该行将根据
  • Format Completed Statement on 上设置的选项进行格式化; (默认ON):一次; 按下 } 后,该行将根据设置的选项进行格式化
  • } 上格式化已完成的块(默认开启):按下 } 后,将根据设置的选项对块进行格式化 粘贴时格式化
  • (默认开启):将代码粘贴到编辑器中,它将根据设置的选项进行格式化

杂项

该选项卡也是 JScript 特定的,包含验证规则以及语句完成选项

The simple answer is: Turn off the Automatic formatting in the Formatting tab

Extracted from the documentation here


JScript specific settings are available under the new Tools / Options / Text Editor / JScript node

These four tabs are:

General & Tabs

Options here are standard across all editors (including JScript)

Formatting

This tab was designed for JScript and contains the most of the JScript specific formatting features

Automatic formatting: This section refers to WHEN formatting will occur as the user is typing in and manipulating code in ‘real time’. Basically, formatting is being performed as the user is constructing the code.

  • Format completed line on enter (default ON): Once {ENTER} is pressed, the line will be formatted according to the options set
  • Format completed statement on ; (default ON): Once ; is pressed, the line will be formatted according to the options set
  • Format completed block on } (default ON): Once } pressed, the block will be formatted according to the options set
  • Format on paste (default ON): Once code is pasted into the editor, it will be formatted according to the options set

Miscellaneous

This tab is also JScript specific and contains validation rules as well as statement completion options

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文