Skip to content

Commit

Permalink
Escape argument to uri from o/O bindings
Browse files Browse the repository at this point in the history
This ensures that urls with authentication details can be entered into
to prompt without the @ being interpreted
  • Loading branch information
keis committed Oct 14, 2016
1 parent e759711 commit d3c252b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/config/config
Expand Up @@ -334,9 +334,9 @@ set history_disable_easter_egg 1
#@cbind <Ctrl><Mod1>t = spawn_sh 'urxvt -e socat unix-connect:"$UZBL_SOCKET" -'

# Uri opening prompts
@cbind o<uri:>_ = uri %s
@cbind o<uri:>_ = uri %r
# Or have it load the current uri into the keycmd for editing
@cbind O<uri:\@uri>_ = uri %s
@cbind O<uri:\@uri>_ = uri %r

# Mode setting binds
@cbind i = @set_mode insert
Expand Down

0 comments on commit d3c252b

Please sign in to comment.