diff --git a/CHANGELOG.md b/CHANGELOG.md index d152806..580043d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ -# 1.5.0 +# 1.4.9 * Added ability to execute the var under cursor using the execute-selected-text event. If nothing is selected it will look for a Clojure var under the cursor to evaluate and display the value of. +* Fixed #163 - REPL results can be selected and copied. +* Default Atom auto completion will still work even if REPL not running or compliment not present # 1.4.8 diff --git a/styles/proto-repl.less b/styles/proto-repl.less index de2c96e..6de4060 100644 --- a/styles/proto-repl.less +++ b/styles/proto-repl.less @@ -25,6 +25,9 @@ ink-console { .items { > .cell { .result { + -webkit-user-select: text; + cursor: text; + > .editor.editor-colors.proto-repl-console { padding: 1px; background-color: rgba(0, 0, 0, 0);