Github user Leemoonsoo commented on the issue:
https://github.com/apache/zeppelin/pull/919
Like comment
https://github.com/apache/zeppelin/pull/966#issuecomment-224127925 from
@felixcheung, it'll be great if interpreter-setting.json can configure
code-editor.
For example, add "editor" field,
```
[
{
"group": "jdbc",
"name": "sql",
"className": "org.apache.zeppelin.jdbc.JDBCInterpreter",
"properties": {
...
},
"editor" : {
"tabSize" : 4,
"syntaxHighlighting" : "sql",
"autoCompletionOnTab" : true,
"tabToWhitespace" : true,
...
},
```
I think this approach can be used not only for 'tabsize', but also for many
other configuration values as example above.
Implementing notebook level first would be an option, but if it is not very
urgent issue, then it's worth to consider configure through
interpreter-setting.json instead. Then many other features (syntaxHighlighting,
autoCompletionOnTab, etc) can easily benefit by it.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---