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 代码编辑器中保持对齐
- 失败的 Canvas 360 jquery 插件 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01