要创建重复的选择和行键盘快捷键,请执行以下操作;
对于Windows 7 Professional:
- 在Windows资源管理器中,转到“ C:\ Users \ USER_NAME \ AppData \ Roaming \ Adobe \ Dreamweaver CS6 \ en_US \ Configuration \ Menus”
- 找到名为“ Menus.xml”的文件
- 复制并锁定它,以便获得原件
- 在文本编辑器(如Notepad ++)中打开“ Menus.xml”,或在Dreamweaver CS6中打开它
- 向下滚动文件,直到找到以下代码(应该在第67行附近;这是我在原始“ Menus.xml”中找到它的位置)
- 在此标签下,复制并粘贴以下代码块不会删除注释:请确保将代码添加到(在此处添加“ xxx”)中。这样做不会让我在论坛上发布代码片段。
从下面的行复制
(Add "comment opener" Here)
Concept2FORM Duplicate Selection or Selected Line Keyboard Shortcut
Autor: Ryan Wainwright of Concept2FORM LLC :: 3D Printing and Industrial Design Solutions
website: http://www.concept2form.com
contact: concept2form@gmail.com
(Add "comment closer" Here)
(Add "<" here)shortcut key="Cmd+R" domRequired="false" command="if (dw.getDocumentDOM() != null) dw.getDocumentDOM().source.startOfLine(false); if (dw.getDocumentDOM() != null) dw.getDocumentDOM().source.arrowDown(1, true); if (dw.canClipCopy()) { dw.clipCopy() }; if (dw.getDocumentDOM() != null) dw.getDocumentDOM().source.startOfLine(false); if (dw.getDocumentDOM() != null && dw.canClipPaste()){MM.event.notify('','dw.clipPaste()')}; if (dw.getDocumentDOM() != null) dw.getDocumentDOM().source.arrowUp(1, false);if (dw.getDocumentDOM() != null) dw.getDocumentDOM().source.endOfLine(false)" name="Concept2FORM Duplicate Selection" id="WD_Duplicator_DupLineDown" (Add "/>" Here)
- 粘贴以上代码块后,在“ Menus.xml”中搜索“ CMD + R”,并将其定位在“ shortcutlist”标记内。代码行将以标记开头:
- 我刚刚将其注释掉,因为它是CSS窗口的刷新快捷方式。不为我着迷。
- 保存“ Menus.xml”文档
- 关闭并重新打开Dreamweaver
- 打开一个HTML文档并转到源代码视图。
- 现在,选择要复制的代码,然后按“ CMD + R”
- 那应该做。
如果发现错误,请重新打开“ Menus.xml”,并使用“ CMD + R”搜索其他快捷方式命令,然后根据需要进行更改。
花了我一段时间来写出并找出答案,以便与他人分享,请留下包含作者和网址的评论。谢谢!!