diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-09-16 23:32:19 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-09-16 23:32:19 +0900 |
commit | c5529958d53146c8c6826673abe6431a19f1924d (patch) | |
tree | 4952c7ac1ded91d52fd6e424c229022b61b67aa3 /src/actions/background.js | |
parent | b2cddcd69b4ae06770d66808624fc43f3dcbcb0e (diff) | |
parent | ae394e28c0cbc8710d4937238c97328afddbca0f (diff) |
Merge branch 'more-redux'
Diffstat (limited to 'src/actions/background.js')
-rw-r--r-- | src/actions/background.js | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/actions/background.js b/src/actions/background.js deleted file mode 100644 index 40b901b..0000000 --- a/src/actions/background.js +++ /dev/null @@ -1,11 +0,0 @@ -import actions from '../actions'; - -export function requestCompletions(line) { - let command = line.split(' ', 1)[0]; - let keywords = line.replace(command + ' ', ''); - return { - type: actions.BACKGROUND_REQUEST_COMPLETIONS, - command, - keywords - }; -} |