mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
add space between + and who is providing
This commit is contained in:
parent
5f30fe473b
commit
928f179821
2 changed files with 8 additions and 8 deletions
|
|
@ -60,4 +60,4 @@ So, copying `notebook` and `conf` directory should be enough.
|
|||
### Upgrading from Zeppelin 0.7 to 0.8
|
||||
|
||||
- From 0.8, we recommend to use `PYSPARK_PYTHON` and `PYSPARK_DRIVER_PYTHON` instead of `zeppelin.pyspark.python` as `zeppelin.pyspark.python` only effects driver. You can use `PYSPARK_PYTHON` and `PYSPARK_DRIVER_PYTHON` as using them in spark.
|
||||
- From 0.8, depending on your device, the keyboard shortcut `Ctrl-L` or `Command-L` is not supported.
|
||||
- From 0.8, depending on your device, the keyboard shortcut `Ctrl-L` or `Command-L` is not supported. This function is provided by [Ace](https://ace.c9.io/) editor.
|
||||
|
|
@ -713,13 +713,13 @@ function ParagraphCtrl($scope, $rootScope, $route, $window, $routeParams, $locat
|
|||
|
||||
var isOption = $rootScope.isMac? 'option' : 'alt';
|
||||
|
||||
$scope.editor.commands.bindKey('ctrl-'+isOption+'-n.', null);
|
||||
$scope.editor.commands.bindKey('ctrl-'+isOption+'-l', null);
|
||||
$scope.editor.commands.bindKey('ctrl-'+isOption+'-w', null);
|
||||
$scope.editor.commands.bindKey('ctrl-'+isOption+'-a', null);
|
||||
$scope.editor.commands.bindKey('ctrl-'+isOption+'-k', null);
|
||||
$scope.editor.commands.bindKey('ctrl-'+isOption+'-e', null);
|
||||
$scope.editor.commands.bindKey('ctrl-'+isOption+'-t', null);
|
||||
$scope.editor.commands.bindKey('ctrl-' + isOption + '-n.', null);
|
||||
$scope.editor.commands.bindKey('ctrl-' + isOption + '-l', null);
|
||||
$scope.editor.commands.bindKey('ctrl-' + isOption + '-w', null);
|
||||
$scope.editor.commands.bindKey('ctrl-' + isOption + '-a', null);
|
||||
$scope.editor.commands.bindKey('ctrl-' + isOption + '-k', null);
|
||||
$scope.editor.commands.bindKey('ctrl-' + isOption + '-e', null);
|
||||
$scope.editor.commands.bindKey('ctrl-' + isOption + '-t', null);
|
||||
$scope.editor.commands.bindKey('ctrl-space', null);
|
||||
|
||||
if ($rootScope.isMac) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue