Visual Assist X助手的一些使用技巧和快捷键

部分快捷键
Shift+Alt+F    // Find References 查找引用
Shift+Alt+S    // FindSynbolDialog打开查找符号对话框
Alt+G          // GotoImplementation调到实现
Alt+M          // ListMethodsInCurrentFile
Alt+Left       // Arrow NavigateBack  后台
Alt+O(字母o)    // OpenCurrespondingFile    .h/.cpp切换
Shift+Alt+O    // OpenFileInSolutionDialog打开解决方案文件对话框
Ctrl+Shift+V   // Parse弹出最近10个copy的内容菜单
Shift+Alt+Q    // RefactorContextMenu  弹出重构菜单
Shift+Alt+C    // RefactorCreateFromUsage
Shift+Alt+R    // RefactorRename改名
Alt+Down       // Arraw ScopeNext  跳到作用范围
Alt+Up         // Arraw ScopePrevious
 

Visual Assist X的用法

 

open file in solution                // 打开文件中的解决办法
open Corresponding file              // 打开相应文件
list methods in current file         // 列表方法在当前文件
file symbol                          // 文件标记
find references                      // 找到参考资料
find references in file              // 找到参考文件
clone find references results        // 寻找克隆结果
find previous by context             // 找到以前的前后关系
goto implementation                  // 转到执行
refactor                             // 重构
paste                                // 粘贴
insert VA snippet                    // 插入VA片段
surround with VA snippet             // 环绕与VA片段(例如:if(){})
tools                                // 工具
enable/disable visual assist x       // 启用/禁用视觉协助x
visual assist x options              // 视觉协助x选项

 refactor重构 

add member                         // 新增成员
add similar member                 // 添加类似的成员
create declaration                 // 创建报单(声明)
create implementation              // 建立执行(实施)
add include                        // 添加包括
changs signature                   // 改变签字
change visibility                  // 改变能见度
document method                    // 文件方法
encapsulate field                  // 封装字段
extract method                     // 提取方法
move implementation to source file // 移动执行源文件
rename                             // 重命名

tools工具

VA outline                      // VA大纲
VA View                         // VA视图
find references results         // 寻找参考资料的结果
spell check                     // 拼写检查
sort selected lines             // 排序选定线
reparse current file            // 重当前文件
原文地址:https://www.cnblogs.com/davygeek/p/7634302.html