# Juno keyboard shortcuts vs debugger

**URL:** https://discourse.julialang.org/t/juno-keyboard-shortcuts-vs-debugger/23034
**Category:** Juno
**Created:** [April 11, 2019, 12:49pm UTC](https://discourse.julialang.org/t/juno-keyboard-shortcuts-vs-debugger/23034 "2019-04-11T12:49:14Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Paul\_Soderlind](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/paul_soderlind/32/1753_2.png) [@Paul\_Soderlind](https://discourse.julialang.org/u/Paul_Soderlind)
#### Post date: [April 11, 2019, 12:49pm UTC](https://discourse.julialang.org/t/juno-keyboard-shortcuts-vs-debugger/23034/1 "2019-04-11T12:49:14Z")

</div>

Now that the debugger has F10 (to run an expression), I am missing something similar for the inline evaluation in Juno.

The Ctrl-Enter in Juno is cool but also somewhat confusing: outside blocks it runs the current expression, otherwise the whole block (eg. everything inside `if ...end`). Highlighting and then Ctrl-Enter works for stepping expression by expression, but that is cumbersome.

I guess I miss the old Shift-Enter. Is it still around?

---

<div class="post-metadata">

### Author: ![baggepinnen](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/baggepinnen/32/693_2.png) [@baggepinnen](https://discourse.julialang.org/u/baggepinnen)
#### Post date: [April 11, 2019, 12:54pm UTC](https://discourse.julialang.org/t/juno-keyboard-shortcuts-vs-debugger/23034/2 "2019-04-11T12:54:05Z")

</div>

I have the following lines in my `keymap.cson` do define some shortcuts for the debugger

```julia
'atom-text-editor[data-grammar="source julia"]':
  'f8': 'julia-debug:step-to-selected-line'
  'f9': 'julia-debug:step-to-next-line'
  'f10': 'julia-debug:step-to-next-expression'
  'f11': 'julia-debug:step-into-function'
  'f12': 'julia-debug:finish-function'
  'f5': 'julia-debug:continue'

```
