vscode 在辅助功能帮助对话框中包含更多笔记本工具栏操作

e4yzc0pl  于 8个月前  发布在  Vscode
关注(0)|答案(2)|浏览(190)

一些操作,如转到失败的单元格,会动态地出现在工具栏上,从视觉Angular 来看这是清晰的。
我们应该将这些信息包含在笔记本辅助功能帮助对话框中。

mbskvtky

mbskvtky1#

@amunger 我们可能需要一个设计/提案,说明我们应该在辅助功能帮助对话框中嵌入什么内容。目前我们有通用的快捷键,上周和JooYoung讨论的一个想法是包括内核状态(如变量),以及导航到新变量视图的命令(我们可能应该在辅助功能模式下默认启用)。

cczfrluj

cczfrluj2#

当前状态:

  1. The notebook view is a collection of code and markdown cells. Code cells can be executed and will produce output directly below the cell.
  2. The Edit Cell command (Enter) will focus on the cell input.
  3. The Quit Edit command (Escape) will set focus on the cell container. The default (Escape) key may need to be pressed twice first exit the virtual cursor if active.
  4. The Focus Output command (Control+DownArrow) will set focus in the cell's output.
  5. The Focus Next Cell Editor command (Control+Alt+PageDown) will set focus in the next cell's editor.
  6. The Focus Previous Cell Editor command (Control+Alt+PageUp) will set focus in the previous cell's editor.
  7. The up and down arrows will also move focus between cells while focused on the outer cell container.
  8. The Execute Cell command (Control+Enter) executes the cell that currently has focus.
  9. The Insert Cell Above/Below commands will create new empty code cells
  10. The Change Cell to Code/Markdown commands are used to switch between cell types.
  11. Disable accessibility verbosity for this feature (Alt+F6).
  12. Exit this dialog (Escape).
展开查看全部

相关问题