Ricardo García Vega
Ricardo García Vega
Thanks for the response! Opening a new file and running `:echo CocAction('documentSymbols')` displays all the symbols:  However, clap/vista don't display any symbols:  However, doing it a second time,...
That makes sense. However, I'm going to open an issue in Coc reporting that `CocAction('documentSymbols')` returns null until the file gets saved. Thanks :)
@saschatimme I totally agree on that. I'm going to investigate a bit more and share here what I discover in the process :)
Hi @behrendtio, thank you so much for this PR, I was planning to upgrade everything :) I'll review it ASAP and merge it :metal: Cheers!
Hi @alex88 :) Yeah, I totally agree with you. This project was my first attempt using this stack, and the way I did this part never convinced me totally. In...
It looks excellent! I did something similar on my Toggl clone project: https://github.com/bigardone/phoenix-toggl/blob/master/web/static/js/routes/index.js ``` javascript export default function configRoutes(store) { const _ensureAuthenticated = (nextState, replace, callback) => { const {...
Yeah! I store the socket in the store using the `session` reducer: ``` javascript const initialState = { currentUser: null, socket: null, channel: null, error: null, }; export default function...