The output of tab completion in the Scala REPL reads across rows, with items sorted left to right before beginning a new row. This feels awkward to me; I'm used to reading lists that are sorted top-to-bottom before beginning a new column. Is there any way to change the output so that it reads down columns, instead?
Making Scala's REPL tab completion read down columns instead of across rows?
343 Views Asked by AudioBubble At
1
There are 1 best solutions below
Related Questions in SHELL
- passing text with \n as one argument in shell
- Delete the extra space after special character in all the lines of text file
- Calling a python function with options from shell script
- bc: prevent "divide by zero" runtime error on multiple operations
- schedule and automate sqoop import/export tasks
- How can launch an external process from java and still be able to interact with this process?
- Linux find files where mtime and ctime are not equal
- Find all files contained into directory named
- Quick way to remove all folders titled CVS in a directory and it's subdirectories?
- shell process not exiting on `exit` inside `$()`
- How to set environment variables with a forward slash in the key
- System 'bash -ic' stuck when I hit ctrl+c
- bash functions returns "command not found"
- Why does pattern "*.so?(.*)" produce a syntax error in a script but not on command line?
- retrieve plaintext password from file using bash command
Related Questions in SCALA
- Spark .mapValues setup with multiple values
- Where do 'normal' println go in a scala jar, under Spark
- Serializing to disk and deserializing Scala objects using Pickling
- Where has "Show Type Info on Mouse Motion" gone in Intellij 14
- AbstractMethodError when mixing in trait nested in object - only when compiled and imported
- Scala POJO Aggregator Exception
- How to read in numbers from n lines into a Scala list?
- Spark pairRDD not working
- Scala Eclipse IDE compiler giving errors until "clean" is run
- How to port Slick 2.1 plain SQL queries to Slick 3.0
- Log of dependency does not show
- Getting unary error for escaped characters in Scala
- Akka actor invoked with a function delegate - is this bad practice?
- Json implicit format with recursive class definition
- How to create a executable jar reading files from local file system
Related Questions in READ-EVAL-PRINT-LOOP
- How do chain commands in Scala interpreter?
- within a project can I compile a module and interactively load the compiled module within ghci?
- Intercept and modify user input in Common Lisp
- import error does not occurs only when required library is installed while repl is running
- How do I quit swift repl without using ctrl-d?
- How to disable "special commands" in node.js REPL?
- What is the equivalent for swift REPL of Python's python -i thisfiletoload.py?
- Leiningen REPL not autoloading project.core namespace
- Why does ^metadata 'symbol not work?
- REPL - recover callable after redefining it
- Cannot run Swift REPL without it barfing a bunch of dylib warnings
- Compile F# program in Linux using command line
- repl/source function does not work in Clojure
- Can I automatically open specific namespaces and libraries in F# Interactive REPL?
- Node repl with async await
Related Questions in TAB-COMPLETION
- How to customise bash completion to pick only a custom set of commands?
- Pressing <tab> after typing 'export VARIABLE=~/' clobbers the 'VARIABLE='
- Suppress filename/directory completion in fish shell
- Is it possible to display some help message when showing autocomplete candidates?
- Broken tab completion on make under linux
- AWS CLI command completion with fish shell
- ZSH + Prezto: CD Tab Completion Issue
- Get tab completion in custom comint mode
- Tab completion, rlcompleter in Emacs
- Vim insert-mode completion ends on typing backslash
- Prevent Sublime Text 3 from tab completing 'sup' to '<sup>' in a non-HTML file
- Forcing automatic parentheses in ipython loses tab completion
- How to implement tab completion on the telnet client side
- Tab completion of keywords in specific order
- Disable auto-completion of tags in Zsh for git checkout command?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Scala REPL use jline in order to have proper completion. Looking into the code of jline, you can see that
CandidateListCompletionHandler.printCandidates(...)callreader.printColumns(candidates)which is copy/paste here.As you can see, there is no way to sort completion candidates in colomn mode instead of line mode, maybe the best you can do is to patch jline and replace it in your scala/lib/ directory.