Skip to content

Commit

Permalink
feat(repl view): REPL View visual hint (<type clojure code here>) fol…
Browse files Browse the repository at this point in the history
…lows preferences
  • Loading branch information
laurentpetit committed Oct 16, 2014
1 parent 5356436 commit 0d58330
Show file tree
Hide file tree
Showing 4 changed files with 249 additions and 173 deletions.
1 change: 1 addition & 0 deletions ChangeLog.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Laurent Petit <laurent dot petit at gmail dot com>
=== Enhancements
- Embedded Leiningen version upgraded from version 2.3.4 to 2.5.0
- Leiningen Automatic detection now works only if the project does not already have Java Classpath metadata set (technically speaking: if the project does not have the Java Nature).
- REPL View visual hint (<type clojure code here>) is displayed according to the menu:Preferences[Clojure > REPL View > Show hints] Preference. Fixes #662 - Toggle REPL hint (Settings)


== Changes between Counterclockwise 0.28.0 and 0.28.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ public IStatus runInWorkspace(IProgressMonitor monitor) throws CoreException {
System.out.println("CREATING LEININGEN PROJECT " + project.getName());
leinHandlers._("add-leiningen-nature-with-monitor", project, monitor);
}
return Status.OK_STATUS;
} catch (Exception e) {
e.printStackTrace();
return CCWPlugin.createErrorStatus(
Expand All @@ -56,7 +57,6 @@ public IStatus runInWorkspace(IProgressMonitor monitor) throws CoreException {
+ project.getName(),
e);
}
return Status.OK_STATUS;
}

private boolean checkLeiningenProjectConsistency(IProject project) {
Expand Down
2 changes: 1 addition & 1 deletion ccw.core/src/java/ccw/preferences/messages.properties
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ SyntaxColoringPreferencePage_replLogError=REPL Log - error
SyntaxColoringPreferencePage_preview=Preview:
REPLViewPreferencePage_activate_autoEval_on_Enter=Trailing [Enter] sends valid REPL content
REPLViewPreferencePage_displayHint=Show hints (input area's top right corner)
REPLViewPreferencePage_displayHint=Show hints (input area's top right corner, input area placeholder)

REPLHistoryPreferencePage_max_size=Maximum REPL history size:
REPLHistoryPreferencePage_persist_schedule=REPL history persistence schedule [ms]:
Loading

0 comments on commit 0d58330

Please sign in to comment.