Break line on each tag attribute and keep them aligned in Visual Studio HTML code editor(在每个标记属性上换行并在 Visual Studio HTML 代码编辑器中保持对齐)
问题描述
如果你希望在下一个版本的 VS 中实现这一点,请投票 <小时>如果你希望在下一个版本的 VS 中实现这一点,请投票 这里.
解决方案
如果你觉得勇敢,你可以编写一个编辑器扩展来为你做这件事.看看 Noah 前段时间为想法编写的 align 扩展:https://github.com/NoahRic/AlignAssignments
If you'd like to see this implemented in the next version of VS, please vote for it here.
Suppose the following horizontally lengthy <button>
HTML
declaration:
<button type="submit" class="btn btn-primary" id="save" name="action:@ViewContext.RouteData.Values["action"]"><i class="icon-save icon-large"></i> @Localization.Save</button>
As you see all tag attributes are inline such that they extend a long way to right in the code editor...
Do you know of any Visual Studio option or extension that allows it to be formatted with Ctrl + K then Ctrl + F like this:
<button type="submit"
class="btn btn-primary"
id="save"
name="action:@ViewContext.RouteData.Values["action"]">
<i class="icon-save icon-large"></i>@Localization.Save
</button>
I think the above format makes it easy to spot a given attribute although it'll clearly make the vertical scroll-bar a little longer. :)
I tried fiddling with Visual Studio options in TOOLS => Options... => Text Editor => HTML
but didn't find an option to control this behavior.
Of course I can align it manually but then if I hit Ctrl + K then Ctrl + F by mistake I lose all the custom made formatting.
If there's no such a thing available, I think this makes a great idea for a Visual Studio extension. As a plus it could even alphabetically order the attributes. :)
Doing a little bit more Googling I found that the XAML
editor in Visual Studio has what I'd like to have in the HTML editor:
Position each attribute on a separate line
I asked this same question at the Visual Studio Extensibility forum:
http://social.msdn.microsoft.com/Forums/en-US/vsx/thread/0d97c205-9f29-4ba7-9d0b-253413077dce/
If you'd like to see this implemented in the next version of VS, please vote for it here.
If you feel brave, you can write an editor extension that does this for you. Take a look at the align extension that Noah wrote a while ago for ideas: https://github.com/NoahRic/AlignAssignments
这篇关于在每个标记属性上换行并在 Visual Studio HTML 代码编辑器中保持对齐的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在每个标记属性上换行并在 Visual Studio HTML 代码编辑器中保持对齐
基础教程推荐
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 直接将值设置为滑块 2022-01-01