Ricardo García Vega

Results 32 comments of Ricardo García Vega

Thanks for the response! Opening a new file and running `:echo CocAction('documentSymbols')` displays all the symbols: ![image](https://user-images.githubusercontent.com/1090272/74105056-cc015280-4b5a-11ea-882e-50af889bd278.png) However, clap/vista don't display any symbols: ![image](https://user-images.githubusercontent.com/1090272/74105069-e9362100-4b5a-11ea-9d19-4ab497454d95.png) 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...