Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix CodeEditor option handling (#290)
`merge` works so that the entries from the second dictionary have precedence. The way it's written right now, user options are overwritten by `defaults` (and thus ignored) ```julia julia> merge(Dict(1=>2), Dict(1=>4)) Dict{Int64, Int64} with 1 entry: 1 => 4 ``` This commit fixes that.
- Loading branch information