aboutsummaryrefslogtreecommitdiff
path: root/src/actions/completion.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/actions/completion.js')
-rw-r--r--src/actions/completion.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/actions/completion.js b/src/actions/completion.js
deleted file mode 100644
index 1ffb025..0000000
--- a/src/actions/completion.js
+++ /dev/null
@@ -1,22 +0,0 @@
-import actions from '../actions';
-
-const setItems = (groups) => {
- return {
- type: actions.COMPLETION_SET_ITEMS,
- groups,
- };
-};
-
-const selectNext = () => {
- return {
- type: actions.COMPLETION_SELECT_NEXT
- };
-};
-
-const selectPrev = () => {
- return {
- type: actions.COMPLETION_SELECT_PREV
- };
-};
-
-export { setItems, selectNext, selectPrev };