我的问题只是关于VSCode扩展名“ Rewrap”。这似乎是将我的代码包装在某个专栏中的最佳选择之一,但是我没有运气。
我在Mac上工作,所以我不知道我是否使用了错误的快捷方式(我认为Windows上的Alt + q会转换为Option + q或Control + q),或者是否要包装我的代码放在无法包装的地方。
我的代码只是一串html代码,我将使用它们来修改.js文件中的html文档。它包含在下面。
一长串的html自动换行在带有VSCode换行符的监视器的末尾自动换行,但是我没有看到Rewrap扩展的任何功能(要在第80列进行自动换行),并且无法从MacOS开发人员。我误解了扩展功能吗?
在此先感谢您的帮助!
addListItem: function(obj, type) {
// Create HTML string with placeholder text
'<div class="item clearfix" id="income-0"> <div class="item__description">Salary</div> <div class="right clearfix"> <div class="item__value">+ 2,100.00</div> <div class="item__delete"> <button class="item__delete--btn"><i class="ion-ios-close-outline"></i></button> </div> </div> </div>'
// Replace the placeholder text with some actual data
// Instert the HTML into the DOM
}