VSCode: Cmd clicking in `Open Recent` opens in a new window!
React, Django and SQL developer at Forma.ai
CMD/CTRL + clicking in Open Recent opens in a new window (without closing your existing window!)

Search for a command to run...
React, Django and SQL developer at Forma.ai
CMD/CTRL + clicking in Open Recent opens in a new window (without closing your existing window!)

No comments yet. Be the first to comment.
#TIL about nonlocal in Python 3 Inner functions can access outer variables but can’t modify them by default Here’s a contrived simple example def outer(): num = 0 def inner(): nonlocal num num += 1 inner() If you remove t...
See https://gist.github.com/Fullchee/7ca8f6ca9fe254a301a91ab93ab74dbc
Problem When I turned off my location on my mac, the weather menu bar icon would start showing Ottawa and list Toronto and Montreal even though my Weather App only had Toronto. Solution I had to add Ottawa and then remove Ottawa again and it fixed i...
<h3 data-testid="hello-header">Hello <strong>World</strong></h3> *ByRole screen.getByRole('heading', { name: 'Hello World' }); or.toHaveTextContent expect(screen.getByTestId('hello-header')).toHaveTextContent('Hello World');