Before
private readUrlEffect$ = this.route.queryParams.pipe(
map(({ query }) =>
this.searchForm.setValue({ search: !!query ? query ; '' })
)
local luasnip = require("luasnip") | |
local cmp = require("cmp") | |
local lspkind = require("lspkind") | |
local c = require("oceanic-next.config").colors | |
local darken = require('oceanic-next.utils').darken | |
local lighten = require('oceanic-next.utils').lighten | |
local t = function(str) | |
return vim.api.nvim_replace_termcodes(str, true, true, true) |
// ==UserScript== | |
// @name YouTube Patch Collection | |
// @match https://www.youtube.com/* | |
// @icon https://www.youtube.com/favicon.ico | |
// @run-at document-start | |
// @grant none | |
// ==/UserScript== | |
// Attributes to remove from <html> | |
const ATTRS = [ |
function! s:expand_html_tab() | |
" try to determine if we're within quotes or tags. | |
" if so, assume we're in an emmet fill area. | |
let line = getline('.') | |
if col('.') < len(line) | |
let line = matchstr(line, '[">][^<"]*\%'.col('.').'c[^>"]*[<"]') | |
if len(line) >= 2 | |
return "\<C-n>" | |
endif |
async toggle() { | |
if (!this._playerModal) { | |
const { PlayerModalComponent } = await import( '../player-modal/player-modal.component'); | |
this._playerModal = PlayerModalComponent; | |
} | |
const modalInstance = await this.modalCtrl.create({ | |
component: this._playerModal, | |
swipeToClose: true, | |
cssClass: 'full-modal', | |
}); |
@-moz-document domain("amazon.co.uk"), domain("amazon.com"), domain("amazon.ca"), domain("amazon.de"), domain("amazon.it"), domain("amazon.es"), domain("amazon.fr"), domain("amazon.com.mx"), domain("amazon.co.jp"), domain("amazon.com.au"), domain("amazon.in") | |
{ | |
body | |
{ | |
font-size: 13px; | |
line-height: 19px; | |
color: #aaa !important; | |
font-family: 'Open Sans', Arial, sans-serif; | |
background-color: #1c1f26 !important; | |
} |
lspconfig.sumneko_lua.setup { | |
cmd = { | |
string.format( | |
"%s/nvim/nvim_lsp/sumneko_lua/lua-language-server/bin/macOS/lua-language-server", | |
"-E", | |
"%s/nvim/nvim_lsp/sumneko_lua/lua-language-server/main.lua", | |
cache_dir, | |
cache_dir | |
) | |
}, |
diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts | |
index 3c0cf79..ce873a3 100644 | |
--- a/src/app/app-routing.module.ts | |
+++ b/src/app/app-routing.module.ts | |
@@ -7,7 +7,7 @@ const routes: Routes = [ | |
loadChildren: () => import('./tabs/tabs.module').then(m => m.TabsPageModule) | |
}, | |
{ | |
- path: 'match-details/:id', | |
+ path: 'match-details', |
diff --git a/src/app/app.module.ts b/src/app/app.module.ts | |
index bf2002c..17309c0 100644 | |
--- a/src/app/app.module.ts | |
+++ b/src/app/app.module.ts | |
@@ -8,21 +8,15 @@ import { StatusBar } from '@ionic-native/status-bar/ngx'; | |
import { AppComponent } from './app.component'; | |
import { AppRoutingModule } from './app-routing.module'; | |
-import { PopoverSrviceService } from './popover-srvice.service'; | |
-import {PopoverModalComponent} from './popover-modal/popover-modal.component' |
import React from 'react'; | |
import { Router, globalHistory, Location } from '@reach/router'; | |
import { Global } from '@emotion/core'; | |
import { ThemeProvider } from 'theme-ui'; | |
import { Helmet } from 'react-helmet'; | |
import get from 'lodash.get'; | |
import merge from 'lodash.merge'; | |
import useKeyboard from 'gatsby-theme-mdx-deck/src/hooks/use-keyboard'; | |
import useStorage from 'gatsby-theme-mdx-deck/src/hooks/use-storage'; | |
import useDeck from 'gatsby-theme-mdx-deck/src/hooks/use-deck'; |