# Same key for run-file and continue

**URL:** https://discourse.julialang.org/t/same-key-for-run-file-and-continue/35306
**Category:** General Usage
**Tags:** debugging
**Created:** [February 28, 2020, 11:02pm UTC](https://discourse.julialang.org/t/same-key-for-run-file-and-continue/35306 "2020-02-28T23:02:43Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![luc-j-bourhis](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/luc-j-bourhis/32/13097_2.png) [@luc-j-bourhis](https://discourse.julialang.org/u/luc-j-bourhis)
#### Post date: [February 28, 2020, 11:02pm UTC](https://discourse.julialang.org/t/same-key-for-run-file-and-continue/35306/1 "2020-02-28T23:02:43Z")

</div>

Coming from a different IDE (for Python), I got used to having the same key to initiate debugging, “run-file” assigned to F5 by default, and “continue” assigned to F8 by default. So basically, F5 starts debugging if it is not yet started, and continues if it has already started. How could I tweak Juno to do that?

---

<div class="post-metadata">

### Author: ![oheil](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/oheil/32/220745_2.png) [@oheil](https://discourse.julialang.org/u/oheil)
#### Post date: [February 29, 2020, 10:13am UTC](https://discourse.julialang.org/t/same-key-for-run-file-and-continue/35306/2 "2020-02-29T10:13:55Z")

</div>

I think you can probably edit the keymaps:  
HOME.atom\packages\julia-client\keymaps\julia-client.cson.ctrl

```julia
# Debug operations
'.platform-win32 atom-text-editor[data-grammar="source julia"]:not(.mini),
 .platform-linux atom-text-editor[data-grammar="source julia"]:not(.mini),
  ink-terminal.julia-terminal,
  .ink-debugger-container':
  'f5': 'julia-debug:run-file'
  'ctrl-f5': 'julia-debug:step-through-file'
  'shift-f5': 'julia-debug:stop-debugging'
  'f8': 'julia-debug:continue'
  'shift-f8': 'julia-debug:step-to-selected-line'
  'f9': 'julia-debug:toggle-breakpoint'
  'shift-f9': 'julia-debug:toggle-conditional-breakpoint'
  'f10': 'julia-debug:step-to-next-expression'
  'shift-f10': 'julia-debug:step-to-next-line'
  'f11': 'julia-debug:step-into'
  'shift-f11': 'julia-debug:step-out'

```
