blob: 40b901b2db9442f3efac52de69f1910c18686910 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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
};
}
|