radian-software / prescient.el

☄️ Simple but effective sorting and filtering for Emacs.
MIT License
612 stars 25 forks source link

Lisp error: (wrong-type-argument stringp #<hash-table equal 4/65 0x480eef9d>) #57

Closed seanfarley closed 4 years ago

seanfarley commented 4 years ago

Trying to use lsp-ivy-workspace-symbol but it seems prescient-remember is choking here:

  substring-no-properties(#<hash-table equal 4/65 0x480eef9d>)
  prescient-remember(#<hash-table equal 4/65 0x480eef9d>)
  #f(compiled-function (x) #<bytecode 0x4bbc8465>)(#<hash-table equal 4/65 0x480eef9d>)
  ivy-call()
  #f(compiled-function (arg1 arg2 &rest rest) "Read a string in the minibuffer, with completion.\n\nPROMPT is a string, normally ending in a colon and a space.\n`ivy-count-format' is prepended to PROMPT during completion.\n\nCOLLECTION is either a list of strings, a function, an alist, or\na hash table, supplied for `minibuffer-completion-table'.\n\nPREDICATE is applied to filter out the COLLECTION immediately.\nThis argument is for compatibility with `completing-read'.\n\nWhen REQUIRE-MATCH is non-nil, only members of COLLECTION can be\nselected.\n\nIf INITIAL-INPUT is non-nil, then insert that input in the\nminibuffer initially.\n\nHISTORY is a name of a variable to hold the completion session\nhistory.\n\nKEYMAP is composed with `ivy-minibuffer-map'.\n\nPRESELECT, when non-nil, determines which one of the candidates\nmatching INITIAL-INPUT to select initially.  An integer stands\nfor the position of the desired candidate in the collection,\ncounting from zero.  Otherwise, use the first occurrence of\nPRESELECT in the collection.  Comparison is first done with\n`equal'.  If that fails, and when applicable, match PRESELECT as\na regular expression.\n\nDEF is for compatibility with `completing-read'.\n\nUPDATE-FN is called each time the candidate list is re-displayed.\n\nWhen SORT is non-nil, `ivy-sort-functions-alist' determines how\nto sort candidates before displaying them.\n\nACTION is a function to call after selecting a candidate.\nIt takes one argument, the selected candidate. If COLLECTION is\nan alist, the argument is a cons cell, otherwise it's a string.\n\nMULTI-ACTION, when non-nil, is called instead of ACTION when\nthere are marked candidates. It takes the list of candidates as\nits only argument. When it's nil, ACTION is called on each marked\ncandidate.\n\nUNWIND is a function of no arguments to call before exiting.\n\nRE-BUILDER is a function transforming input text into a regex\npattern.\n\nMATCHER is a function which can override how candidates are\nfiltered based on user input.  It takes a regex pattern and a\nlist of candidates, and returns the list of matching candidates.\n\nDYNAMIC-COLLECTION is a boolean specifying whether the list of\ncandidates is updated after each input by calling COLLECTION.\n\nEXTRA-PROPS can be used to store collection-specific\nsession-specific data.\n\nCALLER is a symbol to uniquely identify the caller to `ivy-read'.\nIt is used, along with COLLECTION, to determine which\ncustomizations apply to the current completion session." #<bytecode 0x4924f21d>)("Workspace symbol: " #f(compiled-function (user-input) #<bytecode 0x47307879>) :dynamic-collection t :require-match t :initial-input nil :action lsp-ivy--workspace-symbol-action :caller lsp-ivy-workspace-symbol :sort t)
  apply(#f(compiled-function (arg1 arg2 &rest rest) "Read a string in the minibuffer, with completion.\n\nPROMPT is a string, normally ending in a colon and a space.\n`ivy-count-format' is prepended to PROMPT during completion.\n\nCOLLECTION is either a list of strings, a function, an alist, or\na hash table, supplied for `minibuffer-completion-table'.\n\nPREDICATE is applied to filter out the COLLECTION immediately.\nThis argument is for compatibility with `completing-read'.\n\nWhen REQUIRE-MATCH is non-nil, only members of COLLECTION can be\nselected.\n\nIf INITIAL-INPUT is non-nil, then insert that input in the\nminibuffer initially.\n\nHISTORY is a name of a variable to hold the completion session\nhistory.\n\nKEYMAP is composed with `ivy-minibuffer-map'.\n\nPRESELECT, when non-nil, determines which one of the candidates\nmatching INITIAL-INPUT to select initially.  An integer stands\nfor the position of the desired candidate in the collection,\ncounting from zero.  Otherwise, use the first occurrence of\nPRESELECT in the collection.  Comparison is first done with\n`equal'.  If that fails, and when applicable, match PRESELECT as\na regular expression.\n\nDEF is for compatibility with `completing-read'.\n\nUPDATE-FN is called each time the candidate list is re-displayed.\n\nWhen SORT is non-nil, `ivy-sort-functions-alist' determines how\nto sort candidates before displaying them.\n\nACTION is a function to call after selecting a candidate.\nIt takes one argument, the selected candidate. If COLLECTION is\nan alist, the argument is a cons cell, otherwise it's a string.\n\nMULTI-ACTION, when non-nil, is called instead of ACTION when\nthere are marked candidates. It takes the list of candidates as\nits only argument. When it's nil, ACTION is called on each marked\ncandidate.\n\nUNWIND is a function of no arguments to call before exiting.\n\nRE-BUILDER is a function transforming input text into a regex\npattern.\n\nMATCHER is a function which can override how candidates are\nfiltered based on user input.  It takes a regex pattern and a\nlist of candidates, and returns the list of matching candidates.\n\nDYNAMIC-COLLECTION is a boolean specifying whether the list of\ncandidates is updated after each input by calling COLLECTION.\n\nEXTRA-PROPS can be used to store collection-specific\nsession-specific data.\n\nCALLER is a symbol to uniquely identify the caller to `ivy-read'.\nIt is used, along with COLLECTION, to determine which\ncustomizations apply to the current completion session." #<bytecode 0x4924f21d>) ("Workspace symbol: " #f(compiled-function (user-input) #<bytecode 0x47307879>) :dynamic-collection t :require-match t :initial-input nil :action lsp-ivy--workspace-symbol-action :caller lsp-ivy-workspace-symbol :sort t))
  #f(advice-wrapper :filter-args #f(compiled-function (arg1 arg2 &rest rest) "Read a string in the minibuffer, with completion.\n\nPROMPT is a string, normally ending in a colon and a space.\n`ivy-count-format' is prepended to PROMPT during completion.\n\nCOLLECTION is either a list of strings, a function, an alist, or\na hash table, supplied for `minibuffer-completion-table'.\n\nPREDICATE is applied to filter out the COLLECTION immediately.\nThis argument is for compatibility with `completing-read'.\n\nWhen REQUIRE-MATCH is non-nil, only members of COLLECTION can be\nselected.\n\nIf INITIAL-INPUT is non-nil, then insert that input in the\nminibuffer initially.\n\nHISTORY is a name of a variable to hold the completion session\nhistory.\n\nKEYMAP is composed with `ivy-minibuffer-map'.\n\nPRESELECT, when non-nil, determines which one of the candidates\nmatching INITIAL-INPUT to select initially.  An integer stands\nfor the position of the desired candidate in the collection,\ncounting from zero.  Otherwise, use the first occurrence of\nPRESELECT in the collection.  Comparison is first done with\n`equal'.  If that fails, and when applicable, match PRESELECT as\na regular expression.\n\nDEF is for compatibility with `completing-read'.\n\nUPDATE-FN is called each time the candidate list is re-displayed.\n\nWhen SORT is non-nil, `ivy-sort-functions-alist' determines how\nto sort candidates before displaying them.\n\nACTION is a function to call after selecting a candidate.\nIt takes one argument, the selected candidate. If COLLECTION is\nan alist, the argument is a cons cell, otherwise it's a string.\n\nMULTI-ACTION, when non-nil, is called instead of ACTION when\nthere are marked candidates. It takes the list of candidates as\nits only argument. When it's nil, ACTION is called on each marked\ncandidate.\n\nUNWIND is a function of no arguments to call before exiting.\n\nRE-BUILDER is a function transforming input text into a regex\npattern.\n\nMATCHER is a function which can override how candidates are\nfiltered based on user input.  It takes a regex pattern and a\nlist of candidates, and returns the list of matching candidates.\n\nDYNAMIC-COLLECTION is a boolean specifying whether the list of\ncandidates is updated after each input by calling COLLECTION.\n\nEXTRA-PROPS can be used to store collection-specific\nsession-specific data.\n\nCALLER is a symbol to uniquely identify the caller to `ivy-read'.\nIt is used, along with COLLECTION, to determine which\ncustomizations apply to the current completion session." #<bytecode 0x4924f21d>) ivy-prescient--enable-sort-commands)("Workspace symbol: " #f(compiled-function (user-input) #<bytecode 0x47307879>) :dynamic-collection t :require-match t :initial-input nil :action lsp-ivy--workspace-symbol-action :caller lsp-ivy-workspace-symbol)
  apply(#f(advice-wrapper :filter-args #f(compiled-function (arg1 arg2 &rest rest) "Read a string in the minibuffer, with completion.\n\nPROMPT is a string, normally ending in a colon and a space.\n`ivy-count-format' is prepended to PROMPT during completion.\n\nCOLLECTION is either a list of strings, a function, an alist, or\na hash table, supplied for `minibuffer-completion-table'.\n\nPREDICATE is applied to filter out the COLLECTION immediately.\nThis argument is for compatibility with `completing-read'.\n\nWhen REQUIRE-MATCH is non-nil, only members of COLLECTION can be\nselected.\n\nIf INITIAL-INPUT is non-nil, then insert that input in the\nminibuffer initially.\n\nHISTORY is a name of a variable to hold the completion session\nhistory.\n\nKEYMAP is composed with `ivy-minibuffer-map'.\n\nPRESELECT, when non-nil, determines which one of the candidates\nmatching INITIAL-INPUT to select initially.  An integer stands\nfor the position of the desired candidate in the collection,\ncounting from zero.  Otherwise, use the first occurrence of\nPRESELECT in the collection.  Comparison is first done with\n`equal'.  If that fails, and when applicable, match PRESELECT as\na regular expression.\n\nDEF is for compatibility with `completing-read'.\n\nUPDATE-FN is called each time the candidate list is re-displayed.\n\nWhen SORT is non-nil, `ivy-sort-functions-alist' determines how\nto sort candidates before displaying them.\n\nACTION is a function to call after selecting a candidate.\nIt takes one argument, the selected candidate. If COLLECTION is\nan alist, the argument is a cons cell, otherwise it's a string.\n\nMULTI-ACTION, when non-nil, is called instead of ACTION when\nthere are marked candidates. It takes the list of candidates as\nits only argument. When it's nil, ACTION is called on each marked\ncandidate.\n\nUNWIND is a function of no arguments to call before exiting.\n\nRE-BUILDER is a function transforming input text into a regex\npattern.\n\nMATCHER is a function which can override how candidates are\nfiltered based on user input.  It takes a regex pattern and a\nlist of candidates, and returns the list of matching candidates.\n\nDYNAMIC-COLLECTION is a boolean specifying whether the list of\ncandidates is updated after each input by calling COLLECTION.\n\nEXTRA-PROPS can be used to store collection-specific\nsession-specific data.\n\nCALLER is a symbol to uniquely identify the caller to `ivy-read'.\nIt is used, along with COLLECTION, to determine which\ncustomizations apply to the current completion session." #<bytecode 0x4924f21d>) ivy-prescient--enable-sort-commands) ("Workspace symbol: " #f(compiled-function (user-input) #<bytecode 0x47307879>) :dynamic-collection t :require-match t :initial-input nil :action lsp-ivy--workspace-symbol-action :caller lsp-ivy-workspace-symbol))
  ivy-posframe--read(#f(advice-wrapper :filter-args #f(compiled-function (arg1 arg2 &rest rest) "Read a string in the minibuffer, with completion.\n\nPROMPT is a string, normally ending in a colon and a space.\n`ivy-count-format' is prepended to PROMPT during completion.\n\nCOLLECTION is either a list of strings, a function, an alist, or\na hash table, supplied for `minibuffer-completion-table'.\n\nPREDICATE is applied to filter out the COLLECTION immediately.\nThis argument is for compatibility with `completing-read'.\n\nWhen REQUIRE-MATCH is non-nil, only members of COLLECTION can be\nselected.\n\nIf INITIAL-INPUT is non-nil, then insert that input in the\nminibuffer initially.\n\nHISTORY is a name of a variable to hold the completion session\nhistory.\n\nKEYMAP is composed with `ivy-minibuffer-map'.\n\nPRESELECT, when non-nil, determines which one of the candidates\nmatching INITIAL-INPUT to select initially.  An integer stands\nfor the position of the desired candidate in the collection,\ncounting from zero.  Otherwise, use the first occurrence of\nPRESELECT in the collection.  Comparison is first done with\n`equal'.  If that fails, and when applicable, match PRESELECT as\na regular expression.\n\nDEF is for compatibility with `completing-read'.\n\nUPDATE-FN is called each time the candidate list is re-displayed.\n\nWhen SORT is non-nil, `ivy-sort-functions-alist' determines how\nto sort candidates before displaying them.\n\nACTION is a function to call after selecting a candidate.\nIt takes one argument, the selected candidate. If COLLECTION is\nan alist, the argument is a cons cell, otherwise it's a string.\n\nMULTI-ACTION, when non-nil, is called instead of ACTION when\nthere are marked candidates. It takes the list of candidates as\nits only argument. When it's nil, ACTION is called on each marked\ncandidate.\n\nUNWIND is a function of no arguments to call before exiting.\n\nRE-BUILDER is a function transforming input text into a regex\npattern.\n\nMATCHER is a function which can override how candidates are\nfiltered based on user input.  It takes a regex pattern and a\nlist of candidates, and returns the list of matching candidates.\n\nDYNAMIC-COLLECTION is a boolean specifying whether the list of\ncandidates is updated after each input by calling COLLECTION.\n\nEXTRA-PROPS can be used to store collection-specific\nsession-specific data.\n\nCALLER is a symbol to uniquely identify the caller to `ivy-read'.\nIt is used, along with COLLECTION, to determine which\ncustomizations apply to the current completion session." #<bytecode 0x4924f21d>) ivy-prescient--enable-sort-commands) "Workspace symbol: " #f(compiled-function (user-input) #<bytecode 0x47307879>) :dynamic-collection t :require-match t :initial-input nil :action lsp-ivy--workspace-symbol-action :caller lsp-ivy-workspace-symbol)
  apply(ivy-posframe--read #f(advice-wrapper :filter-args #f(compiled-function (arg1 arg2 &rest rest) "Read a string in the minibuffer, with completion.\n\nPROMPT is a string, normally ending in a colon and a space.\n`ivy-count-format' is prepended to PROMPT during completion.\n\nCOLLECTION is either a list of strings, a function, an alist, or\na hash table, supplied for `minibuffer-completion-table'.\n\nPREDICATE is applied to filter out the COLLECTION immediately.\nThis argument is for compatibility with `completing-read'.\n\nWhen REQUIRE-MATCH is non-nil, only members of COLLECTION can be\nselected.\n\nIf INITIAL-INPUT is non-nil, then insert that input in the\nminibuffer initially.\n\nHISTORY is a name of a variable to hold the completion session\nhistory.\n\nKEYMAP is composed with `ivy-minibuffer-map'.\n\nPRESELECT, when non-nil, determines which one of the candidates\nmatching INITIAL-INPUT to select initially.  An integer stands\nfor the position of the desired candidate in the collection,\ncounting from zero.  Otherwise, use the first occurrence of\nPRESELECT in the collection.  Comparison is first done with\n`equal'.  If that fails, and when applicable, match PRESELECT as\na regular expression.\n\nDEF is for compatibility with `completing-read'.\n\nUPDATE-FN is called each time the candidate list is re-displayed.\n\nWhen SORT is non-nil, `ivy-sort-functions-alist' determines how\nto sort candidates before displaying them.\n\nACTION is a function to call after selecting a candidate.\nIt takes one argument, the selected candidate. If COLLECTION is\nan alist, the argument is a cons cell, otherwise it's a string.\n\nMULTI-ACTION, when non-nil, is called instead of ACTION when\nthere are marked candidates. It takes the list of candidates as\nits only argument. When it's nil, ACTION is called on each marked\ncandidate.\n\nUNWIND is a function of no arguments to call before exiting.\n\nRE-BUILDER is a function transforming input text into a regex\npattern.\n\nMATCHER is a function which can override how candidates are\nfiltered based on user input.  It takes a regex pattern and a\nlist of candidates, and returns the list of matching candidates.\n\nDYNAMIC-COLLECTION is a boolean specifying whether the list of\ncandidates is updated after each input by calling COLLECTION.\n\nEXTRA-PROPS can be used to store collection-specific\nsession-specific data.\n\nCALLER is a symbol to uniquely identify the caller to `ivy-read'.\nIt is used, along with COLLECTION, to determine which\ncustomizations apply to the current completion session." #<bytecode 0x4924f21d>) ivy-prescient--enable-sort-commands) ("Workspace symbol: " #f(compiled-function (user-input) #<bytecode 0x47307879>) :dynamic-collection t :require-match t :initial-input nil :action lsp-ivy--workspace-symbol-action :caller lsp-ivy-workspace-symbol))
  ivy-read("Workspace symbol: " #f(compiled-function (user-input) #<bytecode 0x47307879>) :dynamic-collection t :require-match t :initial-input nil :action lsp-ivy--workspace-symbol-action :caller lsp-ivy-workspace-symbol)
  lsp-ivy--workspace-symbol((#s(lsp--workspace :ewoc #s(ewoc :buffer #<buffer *lsp-log: mspyls:29493*> :pretty-printer lsp--log-entry-pp :header [[[[[[[[[[[[[[[[[[[[[[[[[[[[[#4 #31 #s(lsp--log-entry :timestamp "06:00:59 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 1 in *lsp-log: mspyls:29493*>] #30 #s(lsp--log-entry :timestamp "06:00:59 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 12 :body ...) #<marker at 87 in *lsp-log: mspyls:29493*>] #29 #s(lsp--log-entry :timestamp "06:00:59 PM" :process-time nil :type incoming-notif :method "telemetry/event" :id nil :body #<hash-table equal 3/65 0x44589821>) #<marker at 180 in *lsp-log: mspyls:29493*>] #28 #s(lsp--log-entry :timestamp "06:01:00 PM" :process-time 463 :type incoming-resp :method "workspace/symbol" :id 12 :body [#<hash-table equal 3/65 0x4bc9bbc1> #<hash-table equal 3/65 0x4056dcc1> #<hash-table equal 3/65 0x46dd6de5> #<hash-table equal 3/65 0x47d0af41> #<hash-table equal 3/65 0x448e5c41> #<hash-table equal 3/65 0x4682d359> #<hash-table equal 4/65 0x46cc35c1> #<hash-table equal 4/65 0x48d9f841> #<hash-table equal 4/65 0x4bc9bed9> #<hash-table equal 4/65 0x4bd48a41> #<hash-table equal 4/65 0x4bd567c1> #<hash-table equal 4/65 0x4bd576d9> #<hash-table equal 4/65 0x4bd577dd> #<hash-table equal 4/65 0x4bd3f55d> #<hash-table equal 4/65 0x4bd3f5dd> #<hash-table equal 4/65 0x4bd411c1> #<hash-table equal 4/65 0x4bca2481> #<hash-table equal 4/65 0x4bca283d> #<hash-table equal 4/65 0x4bca41ad> #<hash-table equal 4/65 0x4bca443d> #<hash-table equal 4/65 0x4bca5c01> #<hash-table equal 4/65 0x4bc9e9c1> #<hash-table equal 4/65 0x4bc9f19d> #<hash-table equal 3/65 0x4bca68b5> #<hash-table equal 3/65 0x4bca7641> #<hash-table equal 3/65 0x4bca85e1> #<hash-table equal 3/65 0x4bca8641> #<hash-table equal 3/65 0x4bcaa241> #<hash-table equal 3/65 0x4bcaaa41> #<hash-table equal 3/65 0x4bcaba1d> #<hash-table equal 3/65 0x4bcace41> #<hash-table equal 3/65 0x4bcad221> #<hash-table equal 3/65 0x4bcae9fd> #<hash-table equal 3/65 0x4bcafa41> #<hash-table equal 3/65 0x4bcb05fd> #<hash-table equal 3/65 0x4bcb1641> #<hash-table equal 3/65 0x4bcb2641> #<hash-table equal 3/65 0x4bcb3d59> #<hash-table equal 3/65 0x4bcb3e5d> #<hash-table equal 3/65 0x4bcb59dd> #<hash-table equal 3/65 0x4bcb5a5d> #<hash-table equal 3/65 0x4bcb82c1> #<hash-table equal 3/65 0x4bcb9301> #<hash-table equal 3/65 0x4bcb96bd> #<hash-table equal 4/65 0x4bcbb02d> #<hash-table equal 4/65 0x4bcbb2bd> #<hash-table equal 4/65 0x4bcbca81> #<hash-table equal 4/65 0x4bcbdac1> #<hash-table equal 4/65 0x4bcbe29d> #<hash-table equal 4/65 0x4bcbf935> ...]) #<marker at 465 in *lsp-log: mspyls:29493*>] #27 #s(lsp--log-entry :timestamp "06:01:01 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 356542 in *lsp-log: mspyls:29493*>] #26 #s(lsp--log-entry :timestamp "06:01:01 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 13 :body ...) #<marker at 356629 in *lsp-log: mspyls:29493*>] #25 #s(lsp--log-entry :timestamp "06:01:01 PM" :process-time nil :type incoming-notif :method "telemetry/event" :id nil :body #<hash-table equal 3/65 0x48955e39>) #<marker at 356723 in *lsp-log: mspyls:29493*>] #24 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357020 in *lsp-log: mspyls:29493*>] #23 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 14 :body ...) #<marker at 357107 in *lsp-log: mspyls:29493*>] #22 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357202 in *lsp-log: mspyls:29493*>] #21 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 15 :body ...) #<marker at 357289 in *lsp-log: mspyls:29493*>] #20 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357385 in *lsp-log: mspyls:29493*>] #19 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 16 :body ...) #<marker at 357472 in *lsp-log: mspyls:29493*>] #18 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357569 in *lsp-log: mspyls:29493*>] #17 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 17 :body ...) #<marker at 357656 in *lsp-log: mspyls:29493*>] #16 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357754 in *lsp-log: mspyls:29493*>] #15 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 18 :body ...) #<marker at 357841 in *lsp-log: mspyls:29493*>] #14 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357940 in *lsp-log: mspyls:29493*>] #13 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 19 :body ...) #<marker at 358027 in *lsp-log: mspyls:29493*>] #12 #s(lsp--log-entry :timestamp "06:01:03 PM" :process-time 0 :type incoming-resp :method nil :id 13 :body [#<hash-table equal 3/65 0x4718535d> #<hash-table equal 3/65 0x48955b3d> #<hash-table equal 3/65 0x47153dad> #<hash-table equal 4/65 0x4bd4b459> #<hash-table equal 4/65 0x4bd44655> #<hash-table equal 4/65 0x4bd44851> #<hash-table equal 4/65 0x471ca041> #<hash-table equal 4/65 0x4bd445bd> #<hash-table equal 3/65 0x4712efc1> #<hash-table equal 3/65 0x4bd42029> #<hash-table equal 3/65 0x47130bc1> #<hash-table equal 3/65 0x4884e1b9> #<hash-table equal 3/65 0x471327c1> #<hash-table equal 3/65 0x47153b81> #<hash-table equal 3/65 0x471679b5> #<hash-table equal 3/65 0x47168741> #<hash-table equal 3/65 0x471696e1> #<hash-table equal 3/65 0x47169741> #<hash-table equal 3/65 0x4716b341> #<hash-table equal 3/65 0x4716bb41> #<hash-table equal 3/65 0x4716cb1d> #<hash-table equal 3/65 0x4716df41> #<hash-table equal 3/65 0x4716e321> #<hash-table equal 4/65 0x4716fafd> #<hash-table equal 4/65 0x47170b41> #<hash-table equal 4/65 0x47146ffd> #<hash-table equal 4/65 0x47148041> #<hash-table equal 4/65 0x47149041> #<hash-table equal 4/65 0x47149f59> #<hash-table equal 4/65 0x4714a05d> #<hash-table equal 4/65 0x4714bbdd> #<hash-table equal 4/65 0x4714bc5d> #<hash-table equal 4/65 0x4714d841> #<hash-table equal 4/65 0x4714f081> #<hash-table equal 4/65 0x4714f43d> #<hash-table equal 3/65 0x47150dad> #<hash-table equal 3/65 0x4715103d> #<hash-table equal 3/65 0x47152801> #<hash-table equal 3/65 0x47122ac1> #<hash-table equal 3/65 0x4712329d> #<hash-table equal 3/65 0x47124935> #<hash-table equal 3/65 0x471256c1> #<hash-table equal 3/65 0x47126661> #<hash-table equal 3/65 0x471266c1> #<hash-table equal 3/65 0x4bc31341> #<hash-table equal 4/65 0x4bc9b3c1> #<hash-table equal 4/65 0x4bcc7f9d> #<hash-table equal 4/65 0x4bc3ec41> #<hash-table equal 4/65 0x4bc3f021> #<hash-table equal 4/65 0x4bca17fd> ...]) #<marker at 358127 in *lsp-log: mspyls:29493*>] #11 #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 14 :body [#<hash-table equal 3/65 0x48128281> #<hash-table equal 3/65 0x4812863d> #<hash-table equal 4/65 0x4813a92d> #<hash-table equal 4/65 0x4813abbd> #<hash-table equal 4/65 0x4813cb81> #<hash-table equal 4/65 0x4813dbc1> #<hash-table equal 4/65 0x4813e39d> #<hash-table equal 3/65 0x4813fa35> #<hash-table equal 3/65 0x481407c1> #<hash-table equal 3/65 0x48141761> #<hash-table equal 3/65 0x481417c1> #<hash-table equal 3/65 0x42a5a4c1> #<hash-table equal 3/65 0x4938c541> #<hash-table equal 3/65 0x4939101d> #<hash-table equal 3/65 0x49392441> #<hash-table equal 3/65 0x49392821> #<hash-table equal 3/65 0x493948fd> #<hash-table equal 4/65 0x49395941> #<hash-table equal 4/65 0x493964fd> #<hash-table equal 4/65 0x49397541> #<hash-table equal 3/65 0x4bd890c1> #<hash-table equal 3/65 0x4bd89fd9> #<hash-table equal 3/65 0x4bd8a0dd> #<hash-table equal 3/65 0x4bd8bc5d> #<hash-table equal 3/65 0x4bd8bcdd> #<hash-table equal 3/65 0x4bd8e0c1> #<hash-table equal 4/65 0x4bd8f101> #<hash-table equal 4/65 0x4bd8f4bd> #<hash-table equal 4/65 0x4bd90e2d> #<hash-table equal 4/65 0x4bd910bd> #<hash-table equal 4/65 0x4bd92881> #<hash-table equal 4/65 0x4bd940c1> #<hash-table equal 4/65 0x4bd9489d> #<hash-table equal 4/65 0x4bd95f35> #<hash-table equal 4/65 0x4bd96cc1> #<hash-table equal 4/65 0x4bd97c61> #<hash-table equal 4/65 0x4bd97cc1> #<hash-table equal 4/65 0x4bd998c1> #<hash-table equal 4/65 0x4bd9a0c1> #<hash-table equal 4/65 0x4bd9b09d> #<hash-table equal 4/65 0x4bd9c4c1> #<hash-table equal 4/65 0x4bd9c8a1> #<hash-table equal 3/65 0x4bd9e07d> #<hash-table equal 3/65 0x4bd9f8c1> #<hash-table equal 3/65 0x4bda047d> #<hash-table equal 3/65 0x481437c1> #<hash-table equal 3/65 0x481447c1> #<hash-table equal 3/65 0x4815f259> #<hash-table equal 3/65 0x4815f35d> #<hash-table equal 3/65 0x48160edd> ...]) #<marker at 714758 in *lsp-log: mspyls:29493*>] #10 #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 15 :body [#<hash-table equal 3/65 0x480b4f41> #<hash-table equal 3/65 0x4bdb01e1> #<hash-table equal 4/65 0x4bdb0241> #<hash-table equal 4/65 0x4bdb1e41> #<hash-table equal 4/65 0x4bdb2641> #<hash-table equal 4/65 0x4bdb361d> #<hash-table equal 4/65 0x4bdb4a41> #<hash-table equal 3/65 0x4bdb4e21> #<hash-table equal 3/65 0x4bdb65fd> #<hash-table equal 3/65 0x4bdb7641> #<hash-table equal 3/65 0x4bdb81fd> #<hash-table equal 3/65 0x4bdb9a41> #<hash-table equal 4/65 0x4bdbaa41> #<hash-table equal 4/65 0x4bdbb959> #<hash-table equal 4/65 0x4bdbba5d> #<hash-table equal 4/65 0x4bdbd5dd> #<hash-table equal 4/65 0x4bdbd65d> #<hash-table equal 4/65 0x4bdbf241> #<hash-table equal 4/65 0x4bdc0281> #<hash-table equal 4/65 0x4bdc063d> #<hash-table equal 4/65 0x4bdc1fad> #<hash-table equal 4/65 0x4bdc223d> #<hash-table equal 4/65 0x4bdc3a01> #<hash-table equal 4/65 0x4bdc4a41> #<hash-table equal 3/65 0x4bdc521d> #<hash-table equal 3/65 0x4bdc5e41> #<hash-table equal 3/65 0x4932a11d> #<hash-table equal 3/65 0x492087c1> #<hash-table equal 3/65 0x49208ba1> #<hash-table equal 3/65 0x493728fd> #<hash-table equal 3/65 0x49393041> #<hash-table equal 3/65 0x4938dcfd> #<hash-table equal 3/65 0x4938ed41> #<hash-table equal 3/65 0x4938fd41> #<hash-table equal 3/65 0x49398059> #<hash-table equal 3/65 0x4939815d> #<hash-table equal 3/65 0x49399cdd> #<hash-table equal 3/65 0x49399d5d> #<hash-table equal 3/65 0x4939b941> #<hash-table equal 3/65 0x4939c981> #<hash-table equal 3/65 0x4939cd3d> #<hash-table equal 3/65 0x4939e6ad> #<hash-table equal 4/65 0x4939e93d> #<hash-table equal 4/65 0x493a0101> #<hash-table equal 4/65 0x493a1141> #<hash-table equal 4/65 0x493a191d> #<hash-table equal 4/65 0x493a2fb5> #<hash-table equal 4/65 0x493a3d41> #<hash-table equal 4/65 0x493a4e61> #<hash-table equal 4/65 0x493a4ec1> ...]) #<marker at 828186 in *lsp-log: mspyls:29493*>] #9 #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 16 :body [#<hash-table equal 3/65 0x493ca67d> #<hash-table equal 3/65 0x4886f735> #<hash-table equal 4/65 0x4886a241> #<hash-table equal 4/65 0x4802b0e1> #<hash-table equal 4/65 0x4802b141> #<hash-table equal 4/65 0x4802c841> #<hash-table equal 4/65 0x4802d041> #<hash-table equal 3/65 0x4802e01d> #<hash-table equal 3/65 0x4802f441> #<hash-table equal 3/65 0x4802f821> #<hash-table equal 3/65 0x48030ffd> #<hash-table equal 3/65 0x48032041> #<hash-table equal 4/65 0x48032bfd> #<hash-table equal 4/65 0x48033c41> #<hash-table equal 4/65 0x43824c41> #<hash-table equal 4/65 0x4383f859> #<hash-table equal 4/65 0x4383f95d> #<hash-table equal 4/65 0x4385d4dd> #<hash-table equal 4/65 0x4385d55d> #<hash-table equal 4/65 0x4385b541> #<hash-table equal 4/65 0x4384c581> #<hash-table equal 4/65 0x4384c93d> #<hash-table equal 4/65 0x4384e2ad> #<hash-table equal 4/65 0x4384e53d> #<hash-table equal 3/65 0x43842501> #<hash-table equal 3/65 0x43831141> #<hash-table equal 3/65 0x4383191d> #<hash-table equal 3/65 0x4388b8b5> #<hash-table equal 3/65 0x4388c641> #<hash-table equal 3/65 0x4388d5e1> #<hash-table equal 3/65 0x4388d641> #<hash-table equal 3/65 0x4388f241> #<hash-table equal 3/65 0x4388fa41> #<hash-table equal 3/65 0x43890a1d> #<hash-table equal 3/65 0x43891e41> #<hash-table equal 3/65 0x43892221> #<hash-table equal 3/65 0x438941fd> #<hash-table equal 3/65 0x43895241> #<hash-table equal 3/65 0x43895dfd> #<hash-table equal 3/65 0x48865d41> #<hash-table equal 3/65 0x4880e641> #<hash-table equal 4/65 0x4880f559> #<hash-table equal 4/65 0x4880f65d> #<hash-table equal 4/65 0x4880b5dd> #<hash-table equal 4/65 0x4880b65d> #<hash-table equal 4/65 0x41836041> #<hash-table equal 4/65 0x41855401> #<hash-table equal 4/65 0x418557bd> #<hash-table equal 4/65 0x4bda592d> #<hash-table equal 4/65 0x4bda5bbd> ...]) #<marker at 859776 in *lsp-log: mspyls:29493*>] #8 #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 17 :body [#<hash-table equal 4/65 0x48049441> #<hash-table equal 4/65 0x4bdcf4c1> #<hash-table equal 4/65 0x4bdd045d> #<hash-table equal 4/65 0x4bdd04dd> #<hash-table equal 4/65 0x4bdd28c1> #<hash-table equal 4/65 0x4bdd3901> #<hash-table equal 4/65 0x4bdd3cbd> #<hash-table equal 4/65 0x4bdd562d> #<hash-table equal 4/65 0x4bdd58bd> #<hash-table equal 4/65 0x48164501> #<hash-table equal 4/65 0x48123fc1> #<hash-table equal 4/65 0x4812479d> #<hash-table equal 4/65 0x48125e35> #<hash-table equal 3/65 0x48126bc1> #<hash-table equal 3/65 0x48127b61> #<hash-table equal 3/65 0x48127bc1> #<hash-table equal 3/65 0x480b6b41> #<hash-table equal 3/65 0x480b7341> #<hash-table equal 3/65 0x42a3119d> #<hash-table equal 3/65 0x43897641> #<hash-table equal 3/65 0x43897a21> #<hash-table equal 3/65 0x4bdd807d> #<hash-table equal 3/65 0x4bdd98c1> #<hash-table equal 4/65 0x4bdda47d> #<hash-table equal 4/65 0x4bddb4c1> #<hash-table equal 4/65 0x4bddc4c1> #<hash-table equal 4/65 0x4bddd3d9> #<hash-table equal 4/65 0x4bddd4dd> #<hash-table equal 4/65 0x4bddf05d> #<hash-table equal 4/65 0x4bddf0dd> #<hash-table equal 4/65 0x493ea0c1> #<hash-table equal 4/65 0x493eb101> #<hash-table equal 4/65 0x493eb4bd> #<hash-table equal 4/65 0x493ece2d> #<hash-table equal 4/65 0x493ed0bd> #<hash-table equal 3/65 0x493ee881> #<hash-table equal 4/65 0x493ef8c1> #<hash-table equal 4/65 0x493f009d> #<hash-table equal 3/65 0x493f1735> #<hash-table equal 3/65 0x493f24c1> #<hash-table equal 3/65 0x493f3461> #<hash-table equal 3/65 0x493f34c1> #<hash-table equal 3/65 0x493f58c1> #<hash-table equal 3/65 0x41689141> #<hash-table equal 3/65 0x480b7f1d> #<hash-table equal 3/65 0x480b9341> #<hash-table equal 3/65 0x480b9721> #<hash-table equal 3/65 0x480baefd> #<hash-table equal 4/65 0x480bbf41> #<hash-table equal 4/65 0x4800b4fd>]) #<marker at 891045 in *lsp-log: mspyls:29493*>] #7 #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 18 :body [#<hash-table equal 4/65 0x493ca65d> #<hash-table equal 4/65 0x4800c945> #<hash-table equal 3/65 0x48050b41>]) #<marker at 909491 in *lsp-log: mspyls:29493*>] #6 #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 965 :type incoming-resp :method "workspace/symbol" :id 19 :body [#<hash-table equal 4/65 0x480eef9d> #<hash-table equal 3/65 0x4800f141>]) #<marker at 910687 in *lsp-log: mspyls:29493*>] #5 "" #<marker at 911526 in *lsp-log: mspyls:29493*>] #4 DL-LIST #<marker at 911526 in *lsp-log: mspyls:29493*>] [#4 [#5 [#6 [#7 [#8 [#9 [#10 [#11 [#12 [#13 [#14 [#15 [#16 [#17 [#18 [#19 [#20 [#21 [#22 [#23 [#24 [#25 [#26 [#27 [#28 [#29 [#30 [#31 #4 DL-LIST #<marker at 911526 in *lsp-log: mspyls:29493*>] "" #<marker at 911526 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 965 :type incoming-resp :method "workspace/symbol" :id 19 :body [#<hash-table equal 4/65 0x480eef9d> #<hash-table equal 3/65 0x4800f141>]) #<marker at 910687 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 18 :body [#<hash-table equal 4/65 0x493ca65d> #<hash-table equal 4/65 0x4800c945> #<hash-table equal 3/65 0x48050b41>]) #<marker at 909491 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 17 :body [#<hash-table equal 4/65 0x48049441> #<hash-table equal 4/65 0x4bdcf4c1> #<hash-table equal 4/65 0x4bdd045d> #<hash-table equal 4/65 0x4bdd04dd> #<hash-table equal 4/65 0x4bdd28c1> #<hash-table equal 4/65 0x4bdd3901> #<hash-table equal 4/65 0x4bdd3cbd> #<hash-table equal 4/65 0x4bdd562d> #<hash-table equal 4/65 0x4bdd58bd> #<hash-table equal 4/65 0x48164501> #<hash-table equal 4/65 0x48123fc1> #<hash-table equal 4/65 0x4812479d> #<hash-table equal 4/65 0x48125e35> #<hash-table equal 3/65 0x48126bc1> #<hash-table equal 3/65 0x48127b61> #<hash-table equal 3/65 0x48127bc1> #<hash-table equal 3/65 0x480b6b41> #<hash-table equal 3/65 0x480b7341> #<hash-table equal 3/65 0x42a3119d> #<hash-table equal 3/65 0x43897641> #<hash-table equal 3/65 0x43897a21> #<hash-table equal 3/65 0x4bdd807d> #<hash-table equal 3/65 0x4bdd98c1> #<hash-table equal 4/65 0x4bdda47d> #<hash-table equal 4/65 0x4bddb4c1> #<hash-table equal 4/65 0x4bddc4c1> #<hash-table equal 4/65 0x4bddd3d9> #<hash-table equal 4/65 0x4bddd4dd> #<hash-table equal 4/65 0x4bddf05d> #<hash-table equal 4/65 0x4bddf0dd> #<hash-table equal 4/65 0x493ea0c1> #<hash-table equal 4/65 0x493eb101> #<hash-table equal 4/65 0x493eb4bd> #<hash-table equal 4/65 0x493ece2d> #<hash-table equal 4/65 0x493ed0bd> #<hash-table equal 3/65 0x493ee881> #<hash-table equal 4/65 0x493ef8c1> #<hash-table equal 4/65 0x493f009d> #<hash-table equal 3/65 0x493f1735> #<hash-table equal 3/65 0x493f24c1> #<hash-table equal 3/65 0x493f3461> #<hash-table equal 3/65 0x493f34c1> #<hash-table equal 3/65 0x493f58c1> #<hash-table equal 3/65 0x41689141> #<hash-table equal 3/65 0x480b7f1d> #<hash-table equal 3/65 0x480b9341> #<hash-table equal 3/65 0x480b9721> #<hash-table equal 3/65 0x480baefd> #<hash-table equal 4/65 0x480bbf41> #<hash-table equal 4/65 0x4800b4fd>]) #<marker at 891045 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 16 :body [#<hash-table equal 3/65 0x493ca67d> #<hash-table equal 3/65 0x4886f735> #<hash-table equal 4/65 0x4886a241> #<hash-table equal 4/65 0x4802b0e1> #<hash-table equal 4/65 0x4802b141> #<hash-table equal 4/65 0x4802c841> #<hash-table equal 4/65 0x4802d041> #<hash-table equal 3/65 0x4802e01d> #<hash-table equal 3/65 0x4802f441> #<hash-table equal 3/65 0x4802f821> #<hash-table equal 3/65 0x48030ffd> #<hash-table equal 3/65 0x48032041> #<hash-table equal 4/65 0x48032bfd> #<hash-table equal 4/65 0x48033c41> #<hash-table equal 4/65 0x43824c41> #<hash-table equal 4/65 0x4383f859> #<hash-table equal 4/65 0x4383f95d> #<hash-table equal 4/65 0x4385d4dd> #<hash-table equal 4/65 0x4385d55d> #<hash-table equal 4/65 0x4385b541> #<hash-table equal 4/65 0x4384c581> #<hash-table equal 4/65 0x4384c93d> #<hash-table equal 4/65 0x4384e2ad> #<hash-table equal 4/65 0x4384e53d> #<hash-table equal 3/65 0x43842501> #<hash-table equal 3/65 0x43831141> #<hash-table equal 3/65 0x4383191d> #<hash-table equal 3/65 0x4388b8b5> #<hash-table equal 3/65 0x4388c641> #<hash-table equal 3/65 0x4388d5e1> #<hash-table equal 3/65 0x4388d641> #<hash-table equal 3/65 0x4388f241> #<hash-table equal 3/65 0x4388fa41> #<hash-table equal 3/65 0x43890a1d> #<hash-table equal 3/65 0x43891e41> #<hash-table equal 3/65 0x43892221> #<hash-table equal 3/65 0x438941fd> #<hash-table equal 3/65 0x43895241> #<hash-table equal 3/65 0x43895dfd> #<hash-table equal 3/65 0x48865d41> #<hash-table equal 3/65 0x4880e641> #<hash-table equal 4/65 0x4880f559> #<hash-table equal 4/65 0x4880f65d> #<hash-table equal 4/65 0x4880b5dd> #<hash-table equal 4/65 0x4880b65d> #<hash-table equal 4/65 0x41836041> #<hash-table equal 4/65 0x41855401> #<hash-table equal 4/65 0x418557bd> #<hash-table equal 4/65 0x4bda592d> #<hash-table equal 4/65 0x4bda5bbd> ...]) #<marker at 859776 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 15 :body [#<hash-table equal 3/65 0x480b4f41> #<hash-table equal 3/65 0x4bdb01e1> #<hash-table equal 4/65 0x4bdb0241> #<hash-table equal 4/65 0x4bdb1e41> #<hash-table equal 4/65 0x4bdb2641> #<hash-table equal 4/65 0x4bdb361d> #<hash-table equal 4/65 0x4bdb4a41> #<hash-table equal 3/65 0x4bdb4e21> #<hash-table equal 3/65 0x4bdb65fd> #<hash-table equal 3/65 0x4bdb7641> #<hash-table equal 3/65 0x4bdb81fd> #<hash-table equal 3/65 0x4bdb9a41> #<hash-table equal 4/65 0x4bdbaa41> #<hash-table equal 4/65 0x4bdbb959> #<hash-table equal 4/65 0x4bdbba5d> #<hash-table equal 4/65 0x4bdbd5dd> #<hash-table equal 4/65 0x4bdbd65d> #<hash-table equal 4/65 0x4bdbf241> #<hash-table equal 4/65 0x4bdc0281> #<hash-table equal 4/65 0x4bdc063d> #<hash-table equal 4/65 0x4bdc1fad> #<hash-table equal 4/65 0x4bdc223d> #<hash-table equal 4/65 0x4bdc3a01> #<hash-table equal 4/65 0x4bdc4a41> #<hash-table equal 3/65 0x4bdc521d> #<hash-table equal 3/65 0x4bdc5e41> #<hash-table equal 3/65 0x4932a11d> #<hash-table equal 3/65 0x492087c1> #<hash-table equal 3/65 0x49208ba1> #<hash-table equal 3/65 0x493728fd> #<hash-table equal 3/65 0x49393041> #<hash-table equal 3/65 0x4938dcfd> #<hash-table equal 3/65 0x4938ed41> #<hash-table equal 3/65 0x4938fd41> #<hash-table equal 3/65 0x49398059> #<hash-table equal 3/65 0x4939815d> #<hash-table equal 3/65 0x49399cdd> #<hash-table equal 3/65 0x49399d5d> #<hash-table equal 3/65 0x4939b941> #<hash-table equal 3/65 0x4939c981> #<hash-table equal 3/65 0x4939cd3d> #<hash-table equal 3/65 0x4939e6ad> #<hash-table equal 4/65 0x4939e93d> #<hash-table equal 4/65 0x493a0101> #<hash-table equal 4/65 0x493a1141> #<hash-table equal 4/65 0x493a191d> #<hash-table equal 4/65 0x493a2fb5> #<hash-table equal 4/65 0x493a3d41> #<hash-table equal 4/65 0x493a4e61> #<hash-table equal 4/65 0x493a4ec1> ...]) #<marker at 828186 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 14 :body [#<hash-table equal 3/65 0x48128281> #<hash-table equal 3/65 0x4812863d> #<hash-table equal 4/65 0x4813a92d> #<hash-table equal 4/65 0x4813abbd> #<hash-table equal 4/65 0x4813cb81> #<hash-table equal 4/65 0x4813dbc1> #<hash-table equal 4/65 0x4813e39d> #<hash-table equal 3/65 0x4813fa35> #<hash-table equal 3/65 0x481407c1> #<hash-table equal 3/65 0x48141761> #<hash-table equal 3/65 0x481417c1> #<hash-table equal 3/65 0x42a5a4c1> #<hash-table equal 3/65 0x4938c541> #<hash-table equal 3/65 0x4939101d> #<hash-table equal 3/65 0x49392441> #<hash-table equal 3/65 0x49392821> #<hash-table equal 3/65 0x493948fd> #<hash-table equal 4/65 0x49395941> #<hash-table equal 4/65 0x493964fd> #<hash-table equal 4/65 0x49397541> #<hash-table equal 3/65 0x4bd890c1> #<hash-table equal 3/65 0x4bd89fd9> #<hash-table equal 3/65 0x4bd8a0dd> #<hash-table equal 3/65 0x4bd8bc5d> #<hash-table equal 3/65 0x4bd8bcdd> #<hash-table equal 3/65 0x4bd8e0c1> #<hash-table equal 4/65 0x4bd8f101> #<hash-table equal 4/65 0x4bd8f4bd> #<hash-table equal 4/65 0x4bd90e2d> #<hash-table equal 4/65 0x4bd910bd> #<hash-table equal 4/65 0x4bd92881> #<hash-table equal 4/65 0x4bd940c1> #<hash-table equal 4/65 0x4bd9489d> #<hash-table equal 4/65 0x4bd95f35> #<hash-table equal 4/65 0x4bd96cc1> #<hash-table equal 4/65 0x4bd97c61> #<hash-table equal 4/65 0x4bd97cc1> #<hash-table equal 4/65 0x4bd998c1> #<hash-table equal 4/65 0x4bd9a0c1> #<hash-table equal 4/65 0x4bd9b09d> #<hash-table equal 4/65 0x4bd9c4c1> #<hash-table equal 4/65 0x4bd9c8a1> #<hash-table equal 3/65 0x4bd9e07d> #<hash-table equal 3/65 0x4bd9f8c1> #<hash-table equal 3/65 0x4bda047d> #<hash-table equal 3/65 0x481437c1> #<hash-table equal 3/65 0x481447c1> #<hash-table equal 3/65 0x4815f259> #<hash-table equal 3/65 0x4815f35d> #<hash-table equal 3/65 0x48160edd> ...]) #<marker at 714758 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:03 PM" :process-time 0 :type incoming-resp :method nil :id 13 :body [#<hash-table equal 3/65 0x4718535d> #<hash-table equal 3/65 0x48955b3d> #<hash-table equal 3/65 0x47153dad> #<hash-table equal 4/65 0x4bd4b459> #<hash-table equal 4/65 0x4bd44655> #<hash-table equal 4/65 0x4bd44851> #<hash-table equal 4/65 0x471ca041> #<hash-table equal 4/65 0x4bd445bd> #<hash-table equal 3/65 0x4712efc1> #<hash-table equal 3/65 0x4bd42029> #<hash-table equal 3/65 0x47130bc1> #<hash-table equal 3/65 0x4884e1b9> #<hash-table equal 3/65 0x471327c1> #<hash-table equal 3/65 0x47153b81> #<hash-table equal 3/65 0x471679b5> #<hash-table equal 3/65 0x47168741> #<hash-table equal 3/65 0x471696e1> #<hash-table equal 3/65 0x47169741> #<hash-table equal 3/65 0x4716b341> #<hash-table equal 3/65 0x4716bb41> #<hash-table equal 3/65 0x4716cb1d> #<hash-table equal 3/65 0x4716df41> #<hash-table equal 3/65 0x4716e321> #<hash-table equal 4/65 0x4716fafd> #<hash-table equal 4/65 0x47170b41> #<hash-table equal 4/65 0x47146ffd> #<hash-table equal 4/65 0x47148041> #<hash-table equal 4/65 0x47149041> #<hash-table equal 4/65 0x47149f59> #<hash-table equal 4/65 0x4714a05d> #<hash-table equal 4/65 0x4714bbdd> #<hash-table equal 4/65 0x4714bc5d> #<hash-table equal 4/65 0x4714d841> #<hash-table equal 4/65 0x4714f081> #<hash-table equal 4/65 0x4714f43d> #<hash-table equal 3/65 0x47150dad> #<hash-table equal 3/65 0x4715103d> #<hash-table equal 3/65 0x47152801> #<hash-table equal 3/65 0x47122ac1> #<hash-table equal 3/65 0x4712329d> #<hash-table equal 3/65 0x47124935> #<hash-table equal 3/65 0x471256c1> #<hash-table equal 3/65 0x47126661> #<hash-table equal 3/65 0x471266c1> #<hash-table equal 3/65 0x4bc31341> #<hash-table equal 4/65 0x4bc9b3c1> #<hash-table equal 4/65 0x4bcc7f9d> #<hash-table equal 4/65 0x4bc3ec41> #<hash-table equal 4/65 0x4bc3f021> #<hash-table equal 4/65 0x4bca17fd> ...]) #<marker at 358127 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 19 :body ...) #<marker at 358027 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357940 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 18 :body ...) #<marker at 357841 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357754 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 17 :body ...) #<marker at 357656 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357569 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 16 :body ...) #<marker at 357472 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357385 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 15 :body ...) #<marker at 357289 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357202 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 14 :body ...) #<marker at 357107 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357020 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:01 PM" :process-time nil :type incoming-notif :method "telemetry/event" :id nil :body #<hash-table equal 3/65 0x48955e39>) #<marker at 356723 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:01 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 13 :body ...) #<marker at 356629 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:01 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 356542 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:00 PM" :process-time 463 :type incoming-resp :method "workspace/symbol" :id 12 :body [#<hash-table equal 3/65 0x4bc9bbc1> #<hash-table equal 3/65 0x4056dcc1> #<hash-table equal 3/65 0x46dd6de5> #<hash-table equal 3/65 0x47d0af41> #<hash-table equal 3/65 0x448e5c41> #<hash-table equal 3/65 0x4682d359> #<hash-table equal 4/65 0x46cc35c1> #<hash-table equal 4/65 0x48d9f841> #<hash-table equal 4/65 0x4bc9bed9> #<hash-table equal 4/65 0x4bd48a41> #<hash-table equal 4/65 0x4bd567c1> #<hash-table equal 4/65 0x4bd576d9> #<hash-table equal 4/65 0x4bd577dd> #<hash-table equal 4/65 0x4bd3f55d> #<hash-table equal 4/65 0x4bd3f5dd> #<hash-table equal 4/65 0x4bd411c1> #<hash-table equal 4/65 0x4bca2481> #<hash-table equal 4/65 0x4bca283d> #<hash-table equal 4/65 0x4bca41ad> #<hash-table equal 4/65 0x4bca443d> #<hash-table equal 4/65 0x4bca5c01> #<hash-table equal 4/65 0x4bc9e9c1> #<hash-table equal 4/65 0x4bc9f19d> #<hash-table equal 3/65 0x4bca68b5> #<hash-table equal 3/65 0x4bca7641> #<hash-table equal 3/65 0x4bca85e1> #<hash-table equal 3/65 0x4bca8641> #<hash-table equal 3/65 0x4bcaa241> #<hash-table equal 3/65 0x4bcaaa41> #<hash-table equal 3/65 0x4bcaba1d> #<hash-table equal 3/65 0x4bcace41> #<hash-table equal 3/65 0x4bcad221> #<hash-table equal 3/65 0x4bcae9fd> #<hash-table equal 3/65 0x4bcafa41> #<hash-table equal 3/65 0x4bcb05fd> #<hash-table equal 3/65 0x4bcb1641> #<hash-table equal 3/65 0x4bcb2641> #<hash-table equal 3/65 0x4bcb3d59> #<hash-table equal 3/65 0x4bcb3e5d> #<hash-table equal 3/65 0x4bcb59dd> #<hash-table equal 3/65 0x4bcb5a5d> #<hash-table equal 3/65 0x4bcb82c1> #<hash-table equal 3/65 0x4bcb9301> #<hash-table equal 3/65 0x4bcb96bd> #<hash-table equal 4/65 0x4bcbb02d> #<hash-table equal 4/65 0x4bcbb2bd> #<hash-table equal 4/65 0x4bcbca81> #<hash-table equal 4/65 0x4bcbdac1> #<hash-table equal 4/65 0x4bcbe29d> #<hash-table equal 4/65 0x4bcbf935> ...]) #<marker at 465 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:00:59 PM" :process-time nil :type incoming-notif :method "telemetry/event" :id nil :body #<hash-table equal 3/65 0x44589821>) #<marker at 180 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:00:59 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 12 :body ...) #<marker at 87 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:00:59 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body (:id 9)) #<marker at 1 in *lsp-log: mspyls:29493*>] "" #<marker at 1 in *lsp-log: mspyls:29493*>] :footer [[[[[[[[[[[[[[[[[[[[[[[[[[[[[#4 #31 DL-LIST #<marker at 911526 in *lsp-log: mspyls:29493*>] #30 "" #<marker at 1 in *lsp-log: mspyls:29493*>] #29 #s(lsp--log-entry :timestamp "06:00:59 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 1 in *lsp-log: mspyls:29493*>] #28 #s(lsp--log-entry :timestamp "06:00:59 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 12 :body ...) #<marker at 87 in *lsp-log: mspyls:29493*>] #27 #s(lsp--log-entry :timestamp "06:00:59 PM" :process-time nil :type incoming-notif :method "telemetry/event" :id nil :body #<hash-table equal 3/65 0x44589821>) #<marker at 180 in *lsp-log: mspyls:29493*>] #26 #s(lsp--log-entry :timestamp "06:01:00 PM" :process-time 463 :type incoming-resp :method "workspace/symbol" :id 12 :body [#<hash-table equal 3/65 0x4bc9bbc1> #<hash-table equal 3/65 0x4056dcc1> #<hash-table equal 3/65 0x46dd6de5> #<hash-table equal 3/65 0x47d0af41> #<hash-table equal 3/65 0x448e5c41> #<hash-table equal 3/65 0x4682d359> #<hash-table equal 4/65 0x46cc35c1> #<hash-table equal 4/65 0x48d9f841> #<hash-table equal 4/65 0x4bc9bed9> #<hash-table equal 4/65 0x4bd48a41> #<hash-table equal 4/65 0x4bd567c1> #<hash-table equal 4/65 0x4bd576d9> #<hash-table equal 4/65 0x4bd577dd> #<hash-table equal 4/65 0x4bd3f55d> #<hash-table equal 4/65 0x4bd3f5dd> #<hash-table equal 4/65 0x4bd411c1> #<hash-table equal 4/65 0x4bca2481> #<hash-table equal 4/65 0x4bca283d> #<hash-table equal 4/65 0x4bca41ad> #<hash-table equal 4/65 0x4bca443d> #<hash-table equal 4/65 0x4bca5c01> #<hash-table equal 4/65 0x4bc9e9c1> #<hash-table equal 4/65 0x4bc9f19d> #<hash-table equal 3/65 0x4bca68b5> #<hash-table equal 3/65 0x4bca7641> #<hash-table equal 3/65 0x4bca85e1> #<hash-table equal 3/65 0x4bca8641> #<hash-table equal 3/65 0x4bcaa241> #<hash-table equal 3/65 0x4bcaaa41> #<hash-table equal 3/65 0x4bcaba1d> #<hash-table equal 3/65 0x4bcace41> #<hash-table equal 3/65 0x4bcad221> #<hash-table equal 3/65 0x4bcae9fd> #<hash-table equal 3/65 0x4bcafa41> #<hash-table equal 3/65 0x4bcb05fd> #<hash-table equal 3/65 0x4bcb1641> #<hash-table equal 3/65 0x4bcb2641> #<hash-table equal 3/65 0x4bcb3d59> #<hash-table equal 3/65 0x4bcb3e5d> #<hash-table equal 3/65 0x4bcb59dd> #<hash-table equal 3/65 0x4bcb5a5d> #<hash-table equal 3/65 0x4bcb82c1> #<hash-table equal 3/65 0x4bcb9301> #<hash-table equal 3/65 0x4bcb96bd> #<hash-table equal 4/65 0x4bcbb02d> #<hash-table equal 4/65 0x4bcbb2bd> #<hash-table equal 4/65 0x4bcbca81> #<hash-table equal 4/65 0x4bcbdac1> #<hash-table equal 4/65 0x4bcbe29d> #<hash-table equal 4/65 0x4bcbf935> ...]) #<marker at 465 in *lsp-log: mspyls:29493*>] #25 #s(lsp--log-entry :timestamp "06:01:01 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 356542 in *lsp-log: mspyls:29493*>] #24 #s(lsp--log-entry :timestamp "06:01:01 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 13 :body ...) #<marker at 356629 in *lsp-log: mspyls:29493*>] #23 #s(lsp--log-entry :timestamp "06:01:01 PM" :process-time nil :type incoming-notif :method "telemetry/event" :id nil :body #<hash-table equal 3/65 0x48955e39>) #<marker at 356723 in *lsp-log: mspyls:29493*>] #22 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357020 in *lsp-log: mspyls:29493*>] #21 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 14 :body ...) #<marker at 357107 in *lsp-log: mspyls:29493*>] #20 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357202 in *lsp-log: mspyls:29493*>] #19 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 15 :body ...) #<marker at 357289 in *lsp-log: mspyls:29493*>] #18 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357385 in *lsp-log: mspyls:29493*>] #17 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 16 :body ...) #<marker at 357472 in *lsp-log: mspyls:29493*>] #16 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357569 in *lsp-log: mspyls:29493*>] #15 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 17 :body ...) #<marker at 357656 in *lsp-log: mspyls:29493*>] #14 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357754 in *lsp-log: mspyls:29493*>] #13 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 18 :body ...) #<marker at 357841 in *lsp-log: mspyls:29493*>] #12 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357940 in *lsp-log: mspyls:29493*>] #11 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 19 :body ...) #<marker at 358027 in *lsp-log: mspyls:29493*>] #10 #s(lsp--log-entry :timestamp "06:01:03 PM" :process-time 0 :type incoming-resp :method nil :id 13 :body [#<hash-table equal 3/65 0x4718535d> #<hash-table equal 3/65 0x48955b3d> #<hash-table equal 3/65 0x47153dad> #<hash-table equal 4/65 0x4bd4b459> #<hash-table equal 4/65 0x4bd44655> #<hash-table equal 4/65 0x4bd44851> #<hash-table equal 4/65 0x471ca041> #<hash-table equal 4/65 0x4bd445bd> #<hash-table equal 3/65 0x4712efc1> #<hash-table equal 3/65 0x4bd42029> #<hash-table equal 3/65 0x47130bc1> #<hash-table equal 3/65 0x4884e1b9> #<hash-table equal 3/65 0x471327c1> #<hash-table equal 3/65 0x47153b81> #<hash-table equal 3/65 0x471679b5> #<hash-table equal 3/65 0x47168741> #<hash-table equal 3/65 0x471696e1> #<hash-table equal 3/65 0x47169741> #<hash-table equal 3/65 0x4716b341> #<hash-table equal 3/65 0x4716bb41> #<hash-table equal 3/65 0x4716cb1d> #<hash-table equal 3/65 0x4716df41> #<hash-table equal 3/65 0x4716e321> #<hash-table equal 4/65 0x4716fafd> #<hash-table equal 4/65 0x47170b41> #<hash-table equal 4/65 0x47146ffd> #<hash-table equal 4/65 0x47148041> #<hash-table equal 4/65 0x47149041> #<hash-table equal 4/65 0x47149f59> #<hash-table equal 4/65 0x4714a05d> #<hash-table equal 4/65 0x4714bbdd> #<hash-table equal 4/65 0x4714bc5d> #<hash-table equal 4/65 0x4714d841> #<hash-table equal 4/65 0x4714f081> #<hash-table equal 4/65 0x4714f43d> #<hash-table equal 3/65 0x47150dad> #<hash-table equal 3/65 0x4715103d> #<hash-table equal 3/65 0x47152801> #<hash-table equal 3/65 0x47122ac1> #<hash-table equal 3/65 0x4712329d> #<hash-table equal 3/65 0x47124935> #<hash-table equal 3/65 0x471256c1> #<hash-table equal 3/65 0x47126661> #<hash-table equal 3/65 0x471266c1> #<hash-table equal 3/65 0x4bc31341> #<hash-table equal 4/65 0x4bc9b3c1> #<hash-table equal 4/65 0x4bcc7f9d> #<hash-table equal 4/65 0x4bc3ec41> #<hash-table equal 4/65 0x4bc3f021> #<hash-table equal 4/65 0x4bca17fd> ...]) #<marker at 358127 in *lsp-log: mspyls:29493*>] #9 #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 14 :body [#<hash-table equal 3/65 0x48128281> #<hash-table equal 3/65 0x4812863d> #<hash-table equal 4/65 0x4813a92d> #<hash-table equal 4/65 0x4813abbd> #<hash-table equal 4/65 0x4813cb81> #<hash-table equal 4/65 0x4813dbc1> #<hash-table equal 4/65 0x4813e39d> #<hash-table equal 3/65 0x4813fa35> #<hash-table equal 3/65 0x481407c1> #<hash-table equal 3/65 0x48141761> #<hash-table equal 3/65 0x481417c1> #<hash-table equal 3/65 0x42a5a4c1> #<hash-table equal 3/65 0x4938c541> #<hash-table equal 3/65 0x4939101d> #<hash-table equal 3/65 0x49392441> #<hash-table equal 3/65 0x49392821> #<hash-table equal 3/65 0x493948fd> #<hash-table equal 4/65 0x49395941> #<hash-table equal 4/65 0x493964fd> #<hash-table equal 4/65 0x49397541> #<hash-table equal 3/65 0x4bd890c1> #<hash-table equal 3/65 0x4bd89fd9> #<hash-table equal 3/65 0x4bd8a0dd> #<hash-table equal 3/65 0x4bd8bc5d> #<hash-table equal 3/65 0x4bd8bcdd> #<hash-table equal 3/65 0x4bd8e0c1> #<hash-table equal 4/65 0x4bd8f101> #<hash-table equal 4/65 0x4bd8f4bd> #<hash-table equal 4/65 0x4bd90e2d> #<hash-table equal 4/65 0x4bd910bd> #<hash-table equal 4/65 0x4bd92881> #<hash-table equal 4/65 0x4bd940c1> #<hash-table equal 4/65 0x4bd9489d> #<hash-table equal 4/65 0x4bd95f35> #<hash-table equal 4/65 0x4bd96cc1> #<hash-table equal 4/65 0x4bd97c61> #<hash-table equal 4/65 0x4bd97cc1> #<hash-table equal 4/65 0x4bd998c1> #<hash-table equal 4/65 0x4bd9a0c1> #<hash-table equal 4/65 0x4bd9b09d> #<hash-table equal 4/65 0x4bd9c4c1> #<hash-table equal 4/65 0x4bd9c8a1> #<hash-table equal 3/65 0x4bd9e07d> #<hash-table equal 3/65 0x4bd9f8c1> #<hash-table equal 3/65 0x4bda047d> #<hash-table equal 3/65 0x481437c1> #<hash-table equal 3/65 0x481447c1> #<hash-table equal 3/65 0x4815f259> #<hash-table equal 3/65 0x4815f35d> #<hash-table equal 3/65 0x48160edd> ...]) #<marker at 714758 in *lsp-log: mspyls:29493*>] #8 #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 15 :body [#<hash-table equal 3/65 0x480b4f41> #<hash-table equal 3/65 0x4bdb01e1> #<hash-table equal 4/65 0x4bdb0241> #<hash-table equal 4/65 0x4bdb1e41> #<hash-table equal 4/65 0x4bdb2641> #<hash-table equal 4/65 0x4bdb361d> #<hash-table equal 4/65 0x4bdb4a41> #<hash-table equal 3/65 0x4bdb4e21> #<hash-table equal 3/65 0x4bdb65fd> #<hash-table equal 3/65 0x4bdb7641> #<hash-table equal 3/65 0x4bdb81fd> #<hash-table equal 3/65 0x4bdb9a41> #<hash-table equal 4/65 0x4bdbaa41> #<hash-table equal 4/65 0x4bdbb959> #<hash-table equal 4/65 0x4bdbba5d> #<hash-table equal 4/65 0x4bdbd5dd> #<hash-table equal 4/65 0x4bdbd65d> #<hash-table equal 4/65 0x4bdbf241> #<hash-table equal 4/65 0x4bdc0281> #<hash-table equal 4/65 0x4bdc063d> #<hash-table equal 4/65 0x4bdc1fad> #<hash-table equal 4/65 0x4bdc223d> #<hash-table equal 4/65 0x4bdc3a01> #<hash-table equal 4/65 0x4bdc4a41> #<hash-table equal 3/65 0x4bdc521d> #<hash-table equal 3/65 0x4bdc5e41> #<hash-table equal 3/65 0x4932a11d> #<hash-table equal 3/65 0x492087c1> #<hash-table equal 3/65 0x49208ba1> #<hash-table equal 3/65 0x493728fd> #<hash-table equal 3/65 0x49393041> #<hash-table equal 3/65 0x4938dcfd> #<hash-table equal 3/65 0x4938ed41> #<hash-table equal 3/65 0x4938fd41> #<hash-table equal 3/65 0x49398059> #<hash-table equal 3/65 0x4939815d> #<hash-table equal 3/65 0x49399cdd> #<hash-table equal 3/65 0x49399d5d> #<hash-table equal 3/65 0x4939b941> #<hash-table equal 3/65 0x4939c981> #<hash-table equal 3/65 0x4939cd3d> #<hash-table equal 3/65 0x4939e6ad> #<hash-table equal 4/65 0x4939e93d> #<hash-table equal 4/65 0x493a0101> #<hash-table equal 4/65 0x493a1141> #<hash-table equal 4/65 0x493a191d> #<hash-table equal 4/65 0x493a2fb5> #<hash-table equal 4/65 0x493a3d41> #<hash-table equal 4/65 0x493a4e61> #<hash-table equal 4/65 0x493a4ec1> ...]) #<marker at 828186 in *lsp-log: mspyls:29493*>] #7 #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 16 :body [#<hash-table equal 3/65 0x493ca67d> #<hash-table equal 3/65 0x4886f735> #<hash-table equal 4/65 0x4886a241> #<hash-table equal 4/65 0x4802b0e1> #<hash-table equal 4/65 0x4802b141> #<hash-table equal 4/65 0x4802c841> #<hash-table equal 4/65 0x4802d041> #<hash-table equal 3/65 0x4802e01d> #<hash-table equal 3/65 0x4802f441> #<hash-table equal 3/65 0x4802f821> #<hash-table equal 3/65 0x48030ffd> #<hash-table equal 3/65 0x48032041> #<hash-table equal 4/65 0x48032bfd> #<hash-table equal 4/65 0x48033c41> #<hash-table equal 4/65 0x43824c41> #<hash-table equal 4/65 0x4383f859> #<hash-table equal 4/65 0x4383f95d> #<hash-table equal 4/65 0x4385d4dd> #<hash-table equal 4/65 0x4385d55d> #<hash-table equal 4/65 0x4385b541> #<hash-table equal 4/65 0x4384c581> #<hash-table equal 4/65 0x4384c93d> #<hash-table equal 4/65 0x4384e2ad> #<hash-table equal 4/65 0x4384e53d> #<hash-table equal 3/65 0x43842501> #<hash-table equal 3/65 0x43831141> #<hash-table equal 3/65 0x4383191d> #<hash-table equal 3/65 0x4388b8b5> #<hash-table equal 3/65 0x4388c641> #<hash-table equal 3/65 0x4388d5e1> #<hash-table equal 3/65 0x4388d641> #<hash-table equal 3/65 0x4388f241> #<hash-table equal 3/65 0x4388fa41> #<hash-table equal 3/65 0x43890a1d> #<hash-table equal 3/65 0x43891e41> #<hash-table equal 3/65 0x43892221> #<hash-table equal 3/65 0x438941fd> #<hash-table equal 3/65 0x43895241> #<hash-table equal 3/65 0x43895dfd> #<hash-table equal 3/65 0x48865d41> #<hash-table equal 3/65 0x4880e641> #<hash-table equal 4/65 0x4880f559> #<hash-table equal 4/65 0x4880f65d> #<hash-table equal 4/65 0x4880b5dd> #<hash-table equal 4/65 0x4880b65d> #<hash-table equal 4/65 0x41836041> #<hash-table equal 4/65 0x41855401> #<hash-table equal 4/65 0x418557bd> #<hash-table equal 4/65 0x4bda592d> #<hash-table equal 4/65 0x4bda5bbd> ...]) #<marker at 859776 in *lsp-log: mspyls:29493*>] #6 #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 17 :body [#<hash-table equal 4/65 0x48049441> #<hash-table equal 4/65 0x4bdcf4c1> #<hash-table equal 4/65 0x4bdd045d> #<hash-table equal 4/65 0x4bdd04dd> #<hash-table equal 4/65 0x4bdd28c1> #<hash-table equal 4/65 0x4bdd3901> #<hash-table equal 4/65 0x4bdd3cbd> #<hash-table equal 4/65 0x4bdd562d> #<hash-table equal 4/65 0x4bdd58bd> #<hash-table equal 4/65 0x48164501> #<hash-table equal 4/65 0x48123fc1> #<hash-table equal 4/65 0x4812479d> #<hash-table equal 4/65 0x48125e35> #<hash-table equal 3/65 0x48126bc1> #<hash-table equal 3/65 0x48127b61> #<hash-table equal 3/65 0x48127bc1> #<hash-table equal 3/65 0x480b6b41> #<hash-table equal 3/65 0x480b7341> #<hash-table equal 3/65 0x42a3119d> #<hash-table equal 3/65 0x43897641> #<hash-table equal 3/65 0x43897a21> #<hash-table equal 3/65 0x4bdd807d> #<hash-table equal 3/65 0x4bdd98c1> #<hash-table equal 4/65 0x4bdda47d> #<hash-table equal 4/65 0x4bddb4c1> #<hash-table equal 4/65 0x4bddc4c1> #<hash-table equal 4/65 0x4bddd3d9> #<hash-table equal 4/65 0x4bddd4dd> #<hash-table equal 4/65 0x4bddf05d> #<hash-table equal 4/65 0x4bddf0dd> #<hash-table equal 4/65 0x493ea0c1> #<hash-table equal 4/65 0x493eb101> #<hash-table equal 4/65 0x493eb4bd> #<hash-table equal 4/65 0x493ece2d> #<hash-table equal 4/65 0x493ed0bd> #<hash-table equal 3/65 0x493ee881> #<hash-table equal 4/65 0x493ef8c1> #<hash-table equal 4/65 0x493f009d> #<hash-table equal 3/65 0x493f1735> #<hash-table equal 3/65 0x493f24c1> #<hash-table equal 3/65 0x493f3461> #<hash-table equal 3/65 0x493f34c1> #<hash-table equal 3/65 0x493f58c1> #<hash-table equal 3/65 0x41689141> #<hash-table equal 3/65 0x480b7f1d> #<hash-table equal 3/65 0x480b9341> #<hash-table equal 3/65 0x480b9721> #<hash-table equal 3/65 0x480baefd> #<hash-table equal 4/65 0x480bbf41> #<hash-table equal 4/65 0x4800b4fd>]) #<marker at 891045 in *lsp-log: mspyls:29493*>] #5 #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 18 :body [#<hash-table equal 4/65 0x493ca65d> #<hash-table equal 4/65 0x4800c945> #<hash-table equal 3/65 0x48050b41>]) #<marker at 909491 in *lsp-log: mspyls:29493*>] #4 #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 965 :type incoming-resp :method "workspace/symbol" :id 19 :body [#<hash-table equal 4/65 0x480eef9d> #<hash-table equal 3/65 0x4800f141>]) #<marker at 910687 in *lsp-log: mspyls:29493*>] [#4 [#5 [#6 [#7 [#8 [#9 [#10 [#11 [#12 [#13 [#14 [#15 [#16 [#17 [#18 [#19 [#20 [#21 [#22 [#23 [#24 [#25 [#26 [#27 [#28 [#29 [#30 [#31 #4 #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 965 :type incoming-resp :method "workspace/symbol" :id 19 :body [#<hash-table equal 4/65 0x480eef9d> #<hash-table equal 3/65 0x4800f141>]) #<marker at 910687 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 18 :body [#<hash-table equal 4/65 0x493ca65d> #<hash-table equal 4/65 0x4800c945> #<hash-table equal 3/65 0x48050b41>]) #<marker at 909491 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 17 :body [#<hash-table equal 4/65 0x48049441> #<hash-table equal 4/65 0x4bdcf4c1> #<hash-table equal 4/65 0x4bdd045d> #<hash-table equal 4/65 0x4bdd04dd> #<hash-table equal 4/65 0x4bdd28c1> #<hash-table equal 4/65 0x4bdd3901> #<hash-table equal 4/65 0x4bdd3cbd> #<hash-table equal 4/65 0x4bdd562d> #<hash-table equal 4/65 0x4bdd58bd> #<hash-table equal 4/65 0x48164501> #<hash-table equal 4/65 0x48123fc1> #<hash-table equal 4/65 0x4812479d> #<hash-table equal 4/65 0x48125e35> #<hash-table equal 3/65 0x48126bc1> #<hash-table equal 3/65 0x48127b61> #<hash-table equal 3/65 0x48127bc1> #<hash-table equal 3/65 0x480b6b41> #<hash-table equal 3/65 0x480b7341> #<hash-table equal 3/65 0x42a3119d> #<hash-table equal 3/65 0x43897641> #<hash-table equal 3/65 0x43897a21> #<hash-table equal 3/65 0x4bdd807d> #<hash-table equal 3/65 0x4bdd98c1> #<hash-table equal 4/65 0x4bdda47d> #<hash-table equal 4/65 0x4bddb4c1> #<hash-table equal 4/65 0x4bddc4c1> #<hash-table equal 4/65 0x4bddd3d9> #<hash-table equal 4/65 0x4bddd4dd> #<hash-table equal 4/65 0x4bddf05d> #<hash-table equal 4/65 0x4bddf0dd> #<hash-table equal 4/65 0x493ea0c1> #<hash-table equal 4/65 0x493eb101> #<hash-table equal 4/65 0x493eb4bd> #<hash-table equal 4/65 0x493ece2d> #<hash-table equal 4/65 0x493ed0bd> #<hash-table equal 3/65 0x493ee881> #<hash-table equal 4/65 0x493ef8c1> #<hash-table equal 4/65 0x493f009d> #<hash-table equal 3/65 0x493f1735> #<hash-table equal 3/65 0x493f24c1> #<hash-table equal 3/65 0x493f3461> #<hash-table equal 3/65 0x493f34c1> #<hash-table equal 3/65 0x493f58c1> #<hash-table equal 3/65 0x41689141> #<hash-table equal 3/65 0x480b7f1d> #<hash-table equal 3/65 0x480b9341> #<hash-table equal 3/65 0x480b9721> #<hash-table equal 3/65 0x480baefd> #<hash-table equal 4/65 0x480bbf41> #<hash-table equal 4/65 0x4800b4fd>]) #<marker at 891045 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 16 :body [#<hash-table equal 3/65 0x493ca67d> #<hash-table equal 3/65 0x4886f735> #<hash-table equal 4/65 0x4886a241> #<hash-table equal 4/65 0x4802b0e1> #<hash-table equal 4/65 0x4802b141> #<hash-table equal 4/65 0x4802c841> #<hash-table equal 4/65 0x4802d041> #<hash-table equal 3/65 0x4802e01d> #<hash-table equal 3/65 0x4802f441> #<hash-table equal 3/65 0x4802f821> #<hash-table equal 3/65 0x48030ffd> #<hash-table equal 3/65 0x48032041> #<hash-table equal 4/65 0x48032bfd> #<hash-table equal 4/65 0x48033c41> #<hash-table equal 4/65 0x43824c41> #<hash-table equal 4/65 0x4383f859> #<hash-table equal 4/65 0x4383f95d> #<hash-table equal 4/65 0x4385d4dd> #<hash-table equal 4/65 0x4385d55d> #<hash-table equal 4/65 0x4385b541> #<hash-table equal 4/65 0x4384c581> #<hash-table equal 4/65 0x4384c93d> #<hash-table equal 4/65 0x4384e2ad> #<hash-table equal 4/65 0x4384e53d> #<hash-table equal 3/65 0x43842501> #<hash-table equal 3/65 0x43831141> #<hash-table equal 3/65 0x4383191d> #<hash-table equal 3/65 0x4388b8b5> #<hash-table equal 3/65 0x4388c641> #<hash-table equal 3/65 0x4388d5e1> #<hash-table equal 3/65 0x4388d641> #<hash-table equal 3/65 0x4388f241> #<hash-table equal 3/65 0x4388fa41> #<hash-table equal 3/65 0x43890a1d> #<hash-table equal 3/65 0x43891e41> #<hash-table equal 3/65 0x43892221> #<hash-table equal 3/65 0x438941fd> #<hash-table equal 3/65 0x43895241> #<hash-table equal 3/65 0x43895dfd> #<hash-table equal 3/65 0x48865d41> #<hash-table equal 3/65 0x4880e641> #<hash-table equal 4/65 0x4880f559> #<hash-table equal 4/65 0x4880f65d> #<hash-table equal 4/65 0x4880b5dd> #<hash-table equal 4/65 0x4880b65d> #<hash-table equal 4/65 0x41836041> #<hash-table equal 4/65 0x41855401> #<hash-table equal 4/65 0x418557bd> #<hash-table equal 4/65 0x4bda592d> #<hash-table equal 4/65 0x4bda5bbd> ...]) #<marker at 859776 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 15 :body [#<hash-table equal 3/65 0x480b4f41> #<hash-table equal 3/65 0x4bdb01e1> #<hash-table equal 4/65 0x4bdb0241> #<hash-table equal 4/65 0x4bdb1e41> #<hash-table equal 4/65 0x4bdb2641> #<hash-table equal 4/65 0x4bdb361d> #<hash-table equal 4/65 0x4bdb4a41> #<hash-table equal 3/65 0x4bdb4e21> #<hash-table equal 3/65 0x4bdb65fd> #<hash-table equal 3/65 0x4bdb7641> #<hash-table equal 3/65 0x4bdb81fd> #<hash-table equal 3/65 0x4bdb9a41> #<hash-table equal 4/65 0x4bdbaa41> #<hash-table equal 4/65 0x4bdbb959> #<hash-table equal 4/65 0x4bdbba5d> #<hash-table equal 4/65 0x4bdbd5dd> #<hash-table equal 4/65 0x4bdbd65d> #<hash-table equal 4/65 0x4bdbf241> #<hash-table equal 4/65 0x4bdc0281> #<hash-table equal 4/65 0x4bdc063d> #<hash-table equal 4/65 0x4bdc1fad> #<hash-table equal 4/65 0x4bdc223d> #<hash-table equal 4/65 0x4bdc3a01> #<hash-table equal 4/65 0x4bdc4a41> #<hash-table equal 3/65 0x4bdc521d> #<hash-table equal 3/65 0x4bdc5e41> #<hash-table equal 3/65 0x4932a11d> #<hash-table equal 3/65 0x492087c1> #<hash-table equal 3/65 0x49208ba1> #<hash-table equal 3/65 0x493728fd> #<hash-table equal 3/65 0x49393041> #<hash-table equal 3/65 0x4938dcfd> #<hash-table equal 3/65 0x4938ed41> #<hash-table equal 3/65 0x4938fd41> #<hash-table equal 3/65 0x49398059> #<hash-table equal 3/65 0x4939815d> #<hash-table equal 3/65 0x49399cdd> #<hash-table equal 3/65 0x49399d5d> #<hash-table equal 3/65 0x4939b941> #<hash-table equal 3/65 0x4939c981> #<hash-table equal 3/65 0x4939cd3d> #<hash-table equal 3/65 0x4939e6ad> #<hash-table equal 4/65 0x4939e93d> #<hash-table equal 4/65 0x493a0101> #<hash-table equal 4/65 0x493a1141> #<hash-table equal 4/65 0x493a191d> #<hash-table equal 4/65 0x493a2fb5> #<hash-table equal 4/65 0x493a3d41> #<hash-table equal 4/65 0x493a4e61> #<hash-table equal 4/65 0x493a4ec1> ...]) #<marker at 828186 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 14 :body [#<hash-table equal 3/65 0x48128281> #<hash-table equal 3/65 0x4812863d> #<hash-table equal 4/65 0x4813a92d> #<hash-table equal 4/65 0x4813abbd> #<hash-table equal 4/65 0x4813cb81> #<hash-table equal 4/65 0x4813dbc1> #<hash-table equal 4/65 0x4813e39d> #<hash-table equal 3/65 0x4813fa35> #<hash-table equal 3/65 0x481407c1> #<hash-table equal 3/65 0x48141761> #<hash-table equal 3/65 0x481417c1> #<hash-table equal 3/65 0x42a5a4c1> #<hash-table equal 3/65 0x4938c541> #<hash-table equal 3/65 0x4939101d> #<hash-table equal 3/65 0x49392441> #<hash-table equal 3/65 0x49392821> #<hash-table equal 3/65 0x493948fd> #<hash-table equal 4/65 0x49395941> #<hash-table equal 4/65 0x493964fd> #<hash-table equal 4/65 0x49397541> #<hash-table equal 3/65 0x4bd890c1> #<hash-table equal 3/65 0x4bd89fd9> #<hash-table equal 3/65 0x4bd8a0dd> #<hash-table equal 3/65 0x4bd8bc5d> #<hash-table equal 3/65 0x4bd8bcdd> #<hash-table equal 3/65 0x4bd8e0c1> #<hash-table equal 4/65 0x4bd8f101> #<hash-table equal 4/65 0x4bd8f4bd> #<hash-table equal 4/65 0x4bd90e2d> #<hash-table equal 4/65 0x4bd910bd> #<hash-table equal 4/65 0x4bd92881> #<hash-table equal 4/65 0x4bd940c1> #<hash-table equal 4/65 0x4bd9489d> #<hash-table equal 4/65 0x4bd95f35> #<hash-table equal 4/65 0x4bd96cc1> #<hash-table equal 4/65 0x4bd97c61> #<hash-table equal 4/65 0x4bd97cc1> #<hash-table equal 4/65 0x4bd998c1> #<hash-table equal 4/65 0x4bd9a0c1> #<hash-table equal 4/65 0x4bd9b09d> #<hash-table equal 4/65 0x4bd9c4c1> #<hash-table equal 4/65 0x4bd9c8a1> #<hash-table equal 3/65 0x4bd9e07d> #<hash-table equal 3/65 0x4bd9f8c1> #<hash-table equal 3/65 0x4bda047d> #<hash-table equal 3/65 0x481437c1> #<hash-table equal 3/65 0x481447c1> #<hash-table equal 3/65 0x4815f259> #<hash-table equal 3/65 0x4815f35d> #<hash-table equal 3/65 0x48160edd> ...]) #<marker at 714758 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:03 PM" :process-time 0 :type incoming-resp :method nil :id 13 :body [#<hash-table equal 3/65 0x4718535d> #<hash-table equal 3/65 0x48955b3d> #<hash-table equal 3/65 0x47153dad> #<hash-table equal 4/65 0x4bd4b459> #<hash-table equal 4/65 0x4bd44655> #<hash-table equal 4/65 0x4bd44851> #<hash-table equal 4/65 0x471ca041> #<hash-table equal 4/65 0x4bd445bd> #<hash-table equal 3/65 0x4712efc1> #<hash-table equal 3/65 0x4bd42029> #<hash-table equal 3/65 0x47130bc1> #<hash-table equal 3/65 0x4884e1b9> #<hash-table equal 3/65 0x471327c1> #<hash-table equal 3/65 0x47153b81> #<hash-table equal 3/65 0x471679b5> #<hash-table equal 3/65 0x47168741> #<hash-table equal 3/65 0x471696e1> #<hash-table equal 3/65 0x47169741> #<hash-table equal 3/65 0x4716b341> #<hash-table equal 3/65 0x4716bb41> #<hash-table equal 3/65 0x4716cb1d> #<hash-table equal 3/65 0x4716df41> #<hash-table equal 3/65 0x4716e321> #<hash-table equal 4/65 0x4716fafd> #<hash-table equal 4/65 0x47170b41> #<hash-table equal 4/65 0x47146ffd> #<hash-table equal 4/65 0x47148041> #<hash-table equal 4/65 0x47149041> #<hash-table equal 4/65 0x47149f59> #<hash-table equal 4/65 0x4714a05d> #<hash-table equal 4/65 0x4714bbdd> #<hash-table equal 4/65 0x4714bc5d> #<hash-table equal 4/65 0x4714d841> #<hash-table equal 4/65 0x4714f081> #<hash-table equal 4/65 0x4714f43d> #<hash-table equal 3/65 0x47150dad> #<hash-table equal 3/65 0x4715103d> #<hash-table equal 3/65 0x47152801> #<hash-table equal 3/65 0x47122ac1> #<hash-table equal 3/65 0x4712329d> #<hash-table equal 3/65 0x47124935> #<hash-table equal 3/65 0x471256c1> #<hash-table equal 3/65 0x47126661> #<hash-table equal 3/65 0x471266c1> #<hash-table equal 3/65 0x4bc31341> #<hash-table equal 4/65 0x4bc9b3c1> #<hash-table equal 4/65 0x4bcc7f9d> #<hash-table equal 4/65 0x4bc3ec41> #<hash-table equal 4/65 0x4bc3f021> #<hash-table equal 4/65 0x4bca17fd> ...]) #<marker at 358127 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 19 :body ...) #<marker at 358027 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357940 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 18 :body ...) #<marker at 357841 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357754 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 17 :body ...) #<marker at 357656 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357569 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 16 :body ...) #<marker at 357472 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357385 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 15 :body ...) #<marker at 357289 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357202 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 14 :body ...) #<marker at 357107 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357020 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:01 PM" :process-time nil :type incoming-notif :method "telemetry/event" :id nil :body #<hash-table equal 3/65 0x48955e39>) #<marker at 356723 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:01 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 13 :body ...) #<marker at 356629 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:01 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 356542 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:00 PM" :process-time 463 :type incoming-resp :method "workspace/symbol" :id 12 :body [#<hash-table equal 3/65 0x4bc9bbc1> #<hash-table equal 3/65 0x4056dcc1> #<hash-table equal 3/65 0x46dd6de5> #<hash-table equal 3/65 0x47d0af41> #<hash-table equal 3/65 0x448e5c41> #<hash-table equal 3/65 0x4682d359> #<hash-table equal 4/65 0x46cc35c1> #<hash-table equal 4/65 0x48d9f841> #<hash-table equal 4/65 0x4bc9bed9> #<hash-table equal 4/65 0x4bd48a41> #<hash-table equal 4/65 0x4bd567c1> #<hash-table equal 4/65 0x4bd576d9> #<hash-table equal 4/65 0x4bd577dd> #<hash-table equal 4/65 0x4bd3f55d> #<hash-table equal 4/65 0x4bd3f5dd> #<hash-table equal 4/65 0x4bd411c1> #<hash-table equal 4/65 0x4bca2481> #<hash-table equal 4/65 0x4bca283d> #<hash-table equal 4/65 0x4bca41ad> #<hash-table equal 4/65 0x4bca443d> #<hash-table equal 4/65 0x4bca5c01> #<hash-table equal 4/65 0x4bc9e9c1> #<hash-table equal 4/65 0x4bc9f19d> #<hash-table equal 3/65 0x4bca68b5> #<hash-table equal 3/65 0x4bca7641> #<hash-table equal 3/65 0x4bca85e1> #<hash-table equal 3/65 0x4bca8641> #<hash-table equal 3/65 0x4bcaa241> #<hash-table equal 3/65 0x4bcaaa41> #<hash-table equal 3/65 0x4bcaba1d> #<hash-table equal 3/65 0x4bcace41> #<hash-table equal 3/65 0x4bcad221> #<hash-table equal 3/65 0x4bcae9fd> #<hash-table equal 3/65 0x4bcafa41> #<hash-table equal 3/65 0x4bcb05fd> #<hash-table equal 3/65 0x4bcb1641> #<hash-table equal 3/65 0x4bcb2641> #<hash-table equal 3/65 0x4bcb3d59> #<hash-table equal 3/65 0x4bcb3e5d> #<hash-table equal 3/65 0x4bcb59dd> #<hash-table equal 3/65 0x4bcb5a5d> #<hash-table equal 3/65 0x4bcb82c1> #<hash-table equal 3/65 0x4bcb9301> #<hash-table equal 3/65 0x4bcb96bd> #<hash-table equal 4/65 0x4bcbb02d> #<hash-table equal 4/65 0x4bcbb2bd> #<hash-table equal 4/65 0x4bcbca81> #<hash-table equal 4/65 0x4bcbdac1> #<hash-table equal 4/65 0x4bcbe29d> #<hash-table equal 4/65 0x4bcbf935> ...]) #<marker at 465 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:00:59 PM" :process-time nil :type incoming-notif :method "telemetry/event" :id nil :body #<hash-table equal 3/65 0x44589821>) #<marker at 180 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:00:59 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 12 :body ...) #<marker at 87 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:00:59 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 1 in *lsp-log: mspyls:29493*>] "" #<marker at 1 in *lsp-log: mspyls:29493*>] DL-LIST #<marker at 911526 in *lsp-log: mspyls:29493*>] "" #<marker at 911526 in *lsp-log: mspyls:29493*>] :dll [[[[[[[[[[[[[[[[[[[[[[[[[[[[[#4 #31 "" #<marker at 1 in *lsp-log: mspyls:29493*>] #30 #s(lsp--log-entry :timestamp "06:00:59 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 1 in *lsp-log: mspyls:29493*>] #29 #s(lsp--log-entry :timestamp "06:00:59 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 12 :body ...) #<marker at 87 in *lsp-log: mspyls:29493*>] #28 #s(lsp--log-entry :timestamp "06:00:59 PM" :process-time nil :type incoming-notif :method "telemetry/event" :id nil :body #<hash-table equal 3/65 0x44589821>) #<marker at 180 in *lsp-log: mspyls:29493*>] #27 #s(lsp--log-entry :timestamp "06:01:00 PM" :process-time 463 :type incoming-resp :method "workspace/symbol" :id 12 :body [#<hash-table equal 3/65 0x4bc9bbc1> #<hash-table equal 3/65 0x4056dcc1> #<hash-table equal 3/65 0x46dd6de5> #<hash-table equal 3/65 0x47d0af41> #<hash-table equal 3/65 0x448e5c41> #<hash-table equal 3/65 0x4682d359> #<hash-table equal 4/65 0x46cc35c1> #<hash-table equal 4/65 0x48d9f841> #<hash-table equal 4/65 0x4bc9bed9> #<hash-table equal 4/65 0x4bd48a41> #<hash-table equal 4/65 0x4bd567c1> #<hash-table equal 4/65 0x4bd576d9> #<hash-table equal 4/65 0x4bd577dd> #<hash-table equal 4/65 0x4bd3f55d> #<hash-table equal 4/65 0x4bd3f5dd> #<hash-table equal 4/65 0x4bd411c1> #<hash-table equal 4/65 0x4bca2481> #<hash-table equal 4/65 0x4bca283d> #<hash-table equal 4/65 0x4bca41ad> #<hash-table equal 4/65 0x4bca443d> #<hash-table equal 4/65 0x4bca5c01> #<hash-table equal 4/65 0x4bc9e9c1> #<hash-table equal 4/65 0x4bc9f19d> #<hash-table equal 3/65 0x4bca68b5> #<hash-table equal 3/65 0x4bca7641> #<hash-table equal 3/65 0x4bca85e1> #<hash-table equal 3/65 0x4bca8641> #<hash-table equal 3/65 0x4bcaa241> #<hash-table equal 3/65 0x4bcaaa41> #<hash-table equal 3/65 0x4bcaba1d> #<hash-table equal 3/65 0x4bcace41> #<hash-table equal 3/65 0x4bcad221> #<hash-table equal 3/65 0x4bcae9fd> #<hash-table equal 3/65 0x4bcafa41> #<hash-table equal 3/65 0x4bcb05fd> #<hash-table equal 3/65 0x4bcb1641> #<hash-table equal 3/65 0x4bcb2641> #<hash-table equal 3/65 0x4bcb3d59> #<hash-table equal 3/65 0x4bcb3e5d> #<hash-table equal 3/65 0x4bcb59dd> #<hash-table equal 3/65 0x4bcb5a5d> #<hash-table equal 3/65 0x4bcb82c1> #<hash-table equal 3/65 0x4bcb9301> #<hash-table equal 3/65 0x4bcb96bd> #<hash-table equal 4/65 0x4bcbb02d> #<hash-table equal 4/65 0x4bcbb2bd> #<hash-table equal 4/65 0x4bcbca81> #<hash-table equal 4/65 0x4bcbdac1> #<hash-table equal 4/65 0x4bcbe29d> #<hash-table equal 4/65 0x4bcbf935> ...]) #<marker at 465 in *lsp-log: mspyls:29493*>] #26 #s(lsp--log-entry :timestamp "06:01:01 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 356542 in *lsp-log: mspyls:29493*>] #25 #s(lsp--log-entry :timestamp "06:01:01 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 13 :body ...) #<marker at 356629 in *lsp-log: mspyls:29493*>] #24 #s(lsp--log-entry :timestamp "06:01:01 PM" :process-time nil :type incoming-notif :method "telemetry/event" :id nil :body #<hash-table equal 3/65 0x48955e39>) #<marker at 356723 in *lsp-log: mspyls:29493*>] #23 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357020 in *lsp-log: mspyls:29493*>] #22 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 14 :body ...) #<marker at 357107 in *lsp-log: mspyls:29493*>] #21 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357202 in *lsp-log: mspyls:29493*>] #20 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 15 :body ...) #<marker at 357289 in *lsp-log: mspyls:29493*>] #19 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357385 in *lsp-log: mspyls:29493*>] #18 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 16 :body ...) #<marker at 357472 in *lsp-log: mspyls:29493*>] #17 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357569 in *lsp-log: mspyls:29493*>] #16 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 17 :body ...) #<marker at 357656 in *lsp-log: mspyls:29493*>] #15 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357754 in *lsp-log: mspyls:29493*>] #14 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 18 :body ...) #<marker at 357841 in *lsp-log: mspyls:29493*>] #13 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357940 in *lsp-log: mspyls:29493*>] #12 #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 19 :body ...) #<marker at 358027 in *lsp-log: mspyls:29493*>] #11 #s(lsp--log-entry :timestamp "06:01:03 PM" :process-time 0 :type incoming-resp :method nil :id 13 :body [#<hash-table equal 3/65 0x4718535d> #<hash-table equal 3/65 0x48955b3d> #<hash-table equal 3/65 0x47153dad> #<hash-table equal 4/65 0x4bd4b459> #<hash-table equal 4/65 0x4bd44655> #<hash-table equal 4/65 0x4bd44851> #<hash-table equal 4/65 0x471ca041> #<hash-table equal 4/65 0x4bd445bd> #<hash-table equal 3/65 0x4712efc1> #<hash-table equal 3/65 0x4bd42029> #<hash-table equal 3/65 0x47130bc1> #<hash-table equal 3/65 0x4884e1b9> #<hash-table equal 3/65 0x471327c1> #<hash-table equal 3/65 0x47153b81> #<hash-table equal 3/65 0x471679b5> #<hash-table equal 3/65 0x47168741> #<hash-table equal 3/65 0x471696e1> #<hash-table equal 3/65 0x47169741> #<hash-table equal 3/65 0x4716b341> #<hash-table equal 3/65 0x4716bb41> #<hash-table equal 3/65 0x4716cb1d> #<hash-table equal 3/65 0x4716df41> #<hash-table equal 3/65 0x4716e321> #<hash-table equal 4/65 0x4716fafd> #<hash-table equal 4/65 0x47170b41> #<hash-table equal 4/65 0x47146ffd> #<hash-table equal 4/65 0x47148041> #<hash-table equal 4/65 0x47149041> #<hash-table equal 4/65 0x47149f59> #<hash-table equal 4/65 0x4714a05d> #<hash-table equal 4/65 0x4714bbdd> #<hash-table equal 4/65 0x4714bc5d> #<hash-table equal 4/65 0x4714d841> #<hash-table equal 4/65 0x4714f081> #<hash-table equal 4/65 0x4714f43d> #<hash-table equal 3/65 0x47150dad> #<hash-table equal 3/65 0x4715103d> #<hash-table equal 3/65 0x47152801> #<hash-table equal 3/65 0x47122ac1> #<hash-table equal 3/65 0x4712329d> #<hash-table equal 3/65 0x47124935> #<hash-table equal 3/65 0x471256c1> #<hash-table equal 3/65 0x47126661> #<hash-table equal 3/65 0x471266c1> #<hash-table equal 3/65 0x4bc31341> #<hash-table equal 4/65 0x4bc9b3c1> #<hash-table equal 4/65 0x4bcc7f9d> #<hash-table equal 4/65 0x4bc3ec41> #<hash-table equal 4/65 0x4bc3f021> #<hash-table equal 4/65 0x4bca17fd> ...]) #<marker at 358127 in *lsp-log: mspyls:29493*>] #10 #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 14 :body [#<hash-table equal 3/65 0x48128281> #<hash-table equal 3/65 0x4812863d> #<hash-table equal 4/65 0x4813a92d> #<hash-table equal 4/65 0x4813abbd> #<hash-table equal 4/65 0x4813cb81> #<hash-table equal 4/65 0x4813dbc1> #<hash-table equal 4/65 0x4813e39d> #<hash-table equal 3/65 0x4813fa35> #<hash-table equal 3/65 0x481407c1> #<hash-table equal 3/65 0x48141761> #<hash-table equal 3/65 0x481417c1> #<hash-table equal 3/65 0x42a5a4c1> #<hash-table equal 3/65 0x4938c541> #<hash-table equal 3/65 0x4939101d> #<hash-table equal 3/65 0x49392441> #<hash-table equal 3/65 0x49392821> #<hash-table equal 3/65 0x493948fd> #<hash-table equal 4/65 0x49395941> #<hash-table equal 4/65 0x493964fd> #<hash-table equal 4/65 0x49397541> #<hash-table equal 3/65 0x4bd890c1> #<hash-table equal 3/65 0x4bd89fd9> #<hash-table equal 3/65 0x4bd8a0dd> #<hash-table equal 3/65 0x4bd8bc5d> #<hash-table equal 3/65 0x4bd8bcdd> #<hash-table equal 3/65 0x4bd8e0c1> #<hash-table equal 4/65 0x4bd8f101> #<hash-table equal 4/65 0x4bd8f4bd> #<hash-table equal 4/65 0x4bd90e2d> #<hash-table equal 4/65 0x4bd910bd> #<hash-table equal 4/65 0x4bd92881> #<hash-table equal 4/65 0x4bd940c1> #<hash-table equal 4/65 0x4bd9489d> #<hash-table equal 4/65 0x4bd95f35> #<hash-table equal 4/65 0x4bd96cc1> #<hash-table equal 4/65 0x4bd97c61> #<hash-table equal 4/65 0x4bd97cc1> #<hash-table equal 4/65 0x4bd998c1> #<hash-table equal 4/65 0x4bd9a0c1> #<hash-table equal 4/65 0x4bd9b09d> #<hash-table equal 4/65 0x4bd9c4c1> #<hash-table equal 4/65 0x4bd9c8a1> #<hash-table equal 3/65 0x4bd9e07d> #<hash-table equal 3/65 0x4bd9f8c1> #<hash-table equal 3/65 0x4bda047d> #<hash-table equal 3/65 0x481437c1> #<hash-table equal 3/65 0x481447c1> #<hash-table equal 3/65 0x4815f259> #<hash-table equal 3/65 0x4815f35d> #<hash-table equal 3/65 0x48160edd> ...]) #<marker at 714758 in *lsp-log: mspyls:29493*>] #9 #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 15 :body [#<hash-table equal 3/65 0x480b4f41> #<hash-table equal 3/65 0x4bdb01e1> #<hash-table equal 4/65 0x4bdb0241> #<hash-table equal 4/65 0x4bdb1e41> #<hash-table equal 4/65 0x4bdb2641> #<hash-table equal 4/65 0x4bdb361d> #<hash-table equal 4/65 0x4bdb4a41> #<hash-table equal 3/65 0x4bdb4e21> #<hash-table equal 3/65 0x4bdb65fd> #<hash-table equal 3/65 0x4bdb7641> #<hash-table equal 3/65 0x4bdb81fd> #<hash-table equal 3/65 0x4bdb9a41> #<hash-table equal 4/65 0x4bdbaa41> #<hash-table equal 4/65 0x4bdbb959> #<hash-table equal 4/65 0x4bdbba5d> #<hash-table equal 4/65 0x4bdbd5dd> #<hash-table equal 4/65 0x4bdbd65d> #<hash-table equal 4/65 0x4bdbf241> #<hash-table equal 4/65 0x4bdc0281> #<hash-table equal 4/65 0x4bdc063d> #<hash-table equal 4/65 0x4bdc1fad> #<hash-table equal 4/65 0x4bdc223d> #<hash-table equal 4/65 0x4bdc3a01> #<hash-table equal 4/65 0x4bdc4a41> #<hash-table equal 3/65 0x4bdc521d> #<hash-table equal 3/65 0x4bdc5e41> #<hash-table equal 3/65 0x4932a11d> #<hash-table equal 3/65 0x492087c1> #<hash-table equal 3/65 0x49208ba1> #<hash-table equal 3/65 0x493728fd> #<hash-table equal 3/65 0x49393041> #<hash-table equal 3/65 0x4938dcfd> #<hash-table equal 3/65 0x4938ed41> #<hash-table equal 3/65 0x4938fd41> #<hash-table equal 3/65 0x49398059> #<hash-table equal 3/65 0x4939815d> #<hash-table equal 3/65 0x49399cdd> #<hash-table equal 3/65 0x49399d5d> #<hash-table equal 3/65 0x4939b941> #<hash-table equal 3/65 0x4939c981> #<hash-table equal 3/65 0x4939cd3d> #<hash-table equal 3/65 0x4939e6ad> #<hash-table equal 4/65 0x4939e93d> #<hash-table equal 4/65 0x493a0101> #<hash-table equal 4/65 0x493a1141> #<hash-table equal 4/65 0x493a191d> #<hash-table equal 4/65 0x493a2fb5> #<hash-table equal 4/65 0x493a3d41> #<hash-table equal 4/65 0x493a4e61> #<hash-table equal 4/65 0x493a4ec1> ...]) #<marker at 828186 in *lsp-log: mspyls:29493*>] #8 #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 16 :body [#<hash-table equal 3/65 0x493ca67d> #<hash-table equal 3/65 0x4886f735> #<hash-table equal 4/65 0x4886a241> #<hash-table equal 4/65 0x4802b0e1> #<hash-table equal 4/65 0x4802b141> #<hash-table equal 4/65 0x4802c841> #<hash-table equal 4/65 0x4802d041> #<hash-table equal 3/65 0x4802e01d> #<hash-table equal 3/65 0x4802f441> #<hash-table equal 3/65 0x4802f821> #<hash-table equal 3/65 0x48030ffd> #<hash-table equal 3/65 0x48032041> #<hash-table equal 4/65 0x48032bfd> #<hash-table equal 4/65 0x48033c41> #<hash-table equal 4/65 0x43824c41> #<hash-table equal 4/65 0x4383f859> #<hash-table equal 4/65 0x4383f95d> #<hash-table equal 4/65 0x4385d4dd> #<hash-table equal 4/65 0x4385d55d> #<hash-table equal 4/65 0x4385b541> #<hash-table equal 4/65 0x4384c581> #<hash-table equal 4/65 0x4384c93d> #<hash-table equal 4/65 0x4384e2ad> #<hash-table equal 4/65 0x4384e53d> #<hash-table equal 3/65 0x43842501> #<hash-table equal 3/65 0x43831141> #<hash-table equal 3/65 0x4383191d> #<hash-table equal 3/65 0x4388b8b5> #<hash-table equal 3/65 0x4388c641> #<hash-table equal 3/65 0x4388d5e1> #<hash-table equal 3/65 0x4388d641> #<hash-table equal 3/65 0x4388f241> #<hash-table equal 3/65 0x4388fa41> #<hash-table equal 3/65 0x43890a1d> #<hash-table equal 3/65 0x43891e41> #<hash-table equal 3/65 0x43892221> #<hash-table equal 3/65 0x438941fd> #<hash-table equal 3/65 0x43895241> #<hash-table equal 3/65 0x43895dfd> #<hash-table equal 3/65 0x48865d41> #<hash-table equal 3/65 0x4880e641> #<hash-table equal 4/65 0x4880f559> #<hash-table equal 4/65 0x4880f65d> #<hash-table equal 4/65 0x4880b5dd> #<hash-table equal 4/65 0x4880b65d> #<hash-table equal 4/65 0x41836041> #<hash-table equal 4/65 0x41855401> #<hash-table equal 4/65 0x418557bd> #<hash-table equal 4/65 0x4bda592d> #<hash-table equal 4/65 0x4bda5bbd> ...]) #<marker at 859776 in *lsp-log: mspyls:29493*>] #7 #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 17 :body [#<hash-table equal 4/65 0x48049441> #<hash-table equal 4/65 0x4bdcf4c1> #<hash-table equal 4/65 0x4bdd045d> #<hash-table equal 4/65 0x4bdd04dd> #<hash-table equal 4/65 0x4bdd28c1> #<hash-table equal 4/65 0x4bdd3901> #<hash-table equal 4/65 0x4bdd3cbd> #<hash-table equal 4/65 0x4bdd562d> #<hash-table equal 4/65 0x4bdd58bd> #<hash-table equal 4/65 0x48164501> #<hash-table equal 4/65 0x48123fc1> #<hash-table equal 4/65 0x4812479d> #<hash-table equal 4/65 0x48125e35> #<hash-table equal 3/65 0x48126bc1> #<hash-table equal 3/65 0x48127b61> #<hash-table equal 3/65 0x48127bc1> #<hash-table equal 3/65 0x480b6b41> #<hash-table equal 3/65 0x480b7341> #<hash-table equal 3/65 0x42a3119d> #<hash-table equal 3/65 0x43897641> #<hash-table equal 3/65 0x43897a21> #<hash-table equal 3/65 0x4bdd807d> #<hash-table equal 3/65 0x4bdd98c1> #<hash-table equal 4/65 0x4bdda47d> #<hash-table equal 4/65 0x4bddb4c1> #<hash-table equal 4/65 0x4bddc4c1> #<hash-table equal 4/65 0x4bddd3d9> #<hash-table equal 4/65 0x4bddd4dd> #<hash-table equal 4/65 0x4bddf05d> #<hash-table equal 4/65 0x4bddf0dd> #<hash-table equal 4/65 0x493ea0c1> #<hash-table equal 4/65 0x493eb101> #<hash-table equal 4/65 0x493eb4bd> #<hash-table equal 4/65 0x493ece2d> #<hash-table equal 4/65 0x493ed0bd> #<hash-table equal 3/65 0x493ee881> #<hash-table equal 4/65 0x493ef8c1> #<hash-table equal 4/65 0x493f009d> #<hash-table equal 3/65 0x493f1735> #<hash-table equal 3/65 0x493f24c1> #<hash-table equal 3/65 0x493f3461> #<hash-table equal 3/65 0x493f34c1> #<hash-table equal 3/65 0x493f58c1> #<hash-table equal 3/65 0x41689141> #<hash-table equal 3/65 0x480b7f1d> #<hash-table equal 3/65 0x480b9341> #<hash-table equal 3/65 0x480b9721> #<hash-table equal 3/65 0x480baefd> #<hash-table equal 4/65 0x480bbf41> #<hash-table equal 4/65 0x4800b4fd>]) #<marker at 891045 in *lsp-log: mspyls:29493*>] #6 #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 18 :body [#<hash-table equal 4/65 0x493ca65d> #<hash-table equal 4/65 0x4800c945> #<hash-table equal 3/65 0x48050b41>]) #<marker at 909491 in *lsp-log: mspyls:29493*>] #5 #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 965 :type incoming-resp :method "workspace/symbol" :id 19 :body [#<hash-table equal 4/65 0x480eef9d> #<hash-table equal 3/65 0x4800f141>]) #<marker at 910687 in *lsp-log: mspyls:29493*>] #4 "" #<marker at 911526 in *lsp-log: mspyls:29493*>] [#4 [#5 [#6 [#7 [#8 [#9 [#10 [#11 [#12 [#13 [#14 [#15 [#16 [#17 [#18 [#19 [#20 [#21 [#22 [#23 [#24 [#25 [#26 [#27 [#28 [#29 [#30 [#31 #4 "" #<marker at 911526 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 965 :type incoming-resp :method "workspace/symbol" :id 19 :body [#<hash-table equal 4/65 0x480eef9d> #<hash-table equal 3/65 0x4800f141>]) #<marker at 910687 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 18 :body [#<hash-table equal 4/65 0x493ca65d> #<hash-table equal 4/65 0x4800c945> #<hash-table equal 3/65 0x48050b41>]) #<marker at 909491 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 17 :body [#<hash-table equal 4/65 0x48049441> #<hash-table equal 4/65 0x4bdcf4c1> #<hash-table equal 4/65 0x4bdd045d> #<hash-table equal 4/65 0x4bdd04dd> #<hash-table equal 4/65 0x4bdd28c1> #<hash-table equal 4/65 0x4bdd3901> #<hash-table equal 4/65 0x4bdd3cbd> #<hash-table equal 4/65 0x4bdd562d> #<hash-table equal 4/65 0x4bdd58bd> #<hash-table equal 4/65 0x48164501> #<hash-table equal 4/65 0x48123fc1> #<hash-table equal 4/65 0x4812479d> #<hash-table equal 4/65 0x48125e35> #<hash-table equal 3/65 0x48126bc1> #<hash-table equal 3/65 0x48127b61> #<hash-table equal 3/65 0x48127bc1> #<hash-table equal 3/65 0x480b6b41> #<hash-table equal 3/65 0x480b7341> #<hash-table equal 3/65 0x42a3119d> #<hash-table equal 3/65 0x43897641> #<hash-table equal 3/65 0x43897a21> #<hash-table equal 3/65 0x4bdd807d> #<hash-table equal 3/65 0x4bdd98c1> #<hash-table equal 4/65 0x4bdda47d> #<hash-table equal 4/65 0x4bddb4c1> #<hash-table equal 4/65 0x4bddc4c1> #<hash-table equal 4/65 0x4bddd3d9> #<hash-table equal 4/65 0x4bddd4dd> #<hash-table equal 4/65 0x4bddf05d> #<hash-table equal 4/65 0x4bddf0dd> #<hash-table equal 4/65 0x493ea0c1> #<hash-table equal 4/65 0x493eb101> #<hash-table equal 4/65 0x493eb4bd> #<hash-table equal 4/65 0x493ece2d> #<hash-table equal 4/65 0x493ed0bd> #<hash-table equal 3/65 0x493ee881> #<hash-table equal 4/65 0x493ef8c1> #<hash-table equal 4/65 0x493f009d> #<hash-table equal 3/65 0x493f1735> #<hash-table equal 3/65 0x493f24c1> #<hash-table equal 3/65 0x493f3461> #<hash-table equal 3/65 0x493f34c1> #<hash-table equal 3/65 0x493f58c1> #<hash-table equal 3/65 0x41689141> #<hash-table equal 3/65 0x480b7f1d> #<hash-table equal 3/65 0x480b9341> #<hash-table equal 3/65 0x480b9721> #<hash-table equal 3/65 0x480baefd> #<hash-table equal 4/65 0x480bbf41> #<hash-table equal 4/65 0x4800b4fd>]) #<marker at 891045 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 16 :body [#<hash-table equal 3/65 0x493ca67d> #<hash-table equal 3/65 0x4886f735> #<hash-table equal 4/65 0x4886a241> #<hash-table equal 4/65 0x4802b0e1> #<hash-table equal 4/65 0x4802b141> #<hash-table equal 4/65 0x4802c841> #<hash-table equal 4/65 0x4802d041> #<hash-table equal 3/65 0x4802e01d> #<hash-table equal 3/65 0x4802f441> #<hash-table equal 3/65 0x4802f821> #<hash-table equal 3/65 0x48030ffd> #<hash-table equal 3/65 0x48032041> #<hash-table equal 4/65 0x48032bfd> #<hash-table equal 4/65 0x48033c41> #<hash-table equal 4/65 0x43824c41> #<hash-table equal 4/65 0x4383f859> #<hash-table equal 4/65 0x4383f95d> #<hash-table equal 4/65 0x4385d4dd> #<hash-table equal 4/65 0x4385d55d> #<hash-table equal 4/65 0x4385b541> #<hash-table equal 4/65 0x4384c581> #<hash-table equal 4/65 0x4384c93d> #<hash-table equal 4/65 0x4384e2ad> #<hash-table equal 4/65 0x4384e53d> #<hash-table equal 3/65 0x43842501> #<hash-table equal 3/65 0x43831141> #<hash-table equal 3/65 0x4383191d> #<hash-table equal 3/65 0x4388b8b5> #<hash-table equal 3/65 0x4388c641> #<hash-table equal 3/65 0x4388d5e1> #<hash-table equal 3/65 0x4388d641> #<hash-table equal 3/65 0x4388f241> #<hash-table equal 3/65 0x4388fa41> #<hash-table equal 3/65 0x43890a1d> #<hash-table equal 3/65 0x43891e41> #<hash-table equal 3/65 0x43892221> #<hash-table equal 3/65 0x438941fd> #<hash-table equal 3/65 0x43895241> #<hash-table equal 3/65 0x43895dfd> #<hash-table equal 3/65 0x48865d41> #<hash-table equal 3/65 0x4880e641> #<hash-table equal 4/65 0x4880f559> #<hash-table equal 4/65 0x4880f65d> #<hash-table equal 4/65 0x4880b5dd> #<hash-table equal 4/65 0x4880b65d> #<hash-table equal 4/65 0x41836041> #<hash-table equal 4/65 0x41855401> #<hash-table equal 4/65 0x418557bd> #<hash-table equal 4/65 0x4bda592d> #<hash-table equal 4/65 0x4bda5bbd> ...]) #<marker at 859776 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 15 :body [#<hash-table equal 3/65 0x480b4f41> #<hash-table equal 3/65 0x4bdb01e1> #<hash-table equal 4/65 0x4bdb0241> #<hash-table equal 4/65 0x4bdb1e41> #<hash-table equal 4/65 0x4bdb2641> #<hash-table equal 4/65 0x4bdb361d> #<hash-table equal 4/65 0x4bdb4a41> #<hash-table equal 3/65 0x4bdb4e21> #<hash-table equal 3/65 0x4bdb65fd> #<hash-table equal 3/65 0x4bdb7641> #<hash-table equal 3/65 0x4bdb81fd> #<hash-table equal 3/65 0x4bdb9a41> #<hash-table equal 4/65 0x4bdbaa41> #<hash-table equal 4/65 0x4bdbb959> #<hash-table equal 4/65 0x4bdbba5d> #<hash-table equal 4/65 0x4bdbd5dd> #<hash-table equal 4/65 0x4bdbd65d> #<hash-table equal 4/65 0x4bdbf241> #<hash-table equal 4/65 0x4bdc0281> #<hash-table equal 4/65 0x4bdc063d> #<hash-table equal 4/65 0x4bdc1fad> #<hash-table equal 4/65 0x4bdc223d> #<hash-table equal 4/65 0x4bdc3a01> #<hash-table equal 4/65 0x4bdc4a41> #<hash-table equal 3/65 0x4bdc521d> #<hash-table equal 3/65 0x4bdc5e41> #<hash-table equal 3/65 0x4932a11d> #<hash-table equal 3/65 0x492087c1> #<hash-table equal 3/65 0x49208ba1> #<hash-table equal 3/65 0x493728fd> #<hash-table equal 3/65 0x49393041> #<hash-table equal 3/65 0x4938dcfd> #<hash-table equal 3/65 0x4938ed41> #<hash-table equal 3/65 0x4938fd41> #<hash-table equal 3/65 0x49398059> #<hash-table equal 3/65 0x4939815d> #<hash-table equal 3/65 0x49399cdd> #<hash-table equal 3/65 0x49399d5d> #<hash-table equal 3/65 0x4939b941> #<hash-table equal 3/65 0x4939c981> #<hash-table equal 3/65 0x4939cd3d> #<hash-table equal 3/65 0x4939e6ad> #<hash-table equal 4/65 0x4939e93d> #<hash-table equal 4/65 0x493a0101> #<hash-table equal 4/65 0x493a1141> #<hash-table equal 4/65 0x493a191d> #<hash-table equal 4/65 0x493a2fb5> #<hash-table equal 4/65 0x493a3d41> #<hash-table equal 4/65 0x493a4e61> #<hash-table equal 4/65 0x493a4ec1> ...]) #<marker at 828186 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:05 PM" :process-time 0 :type incoming-resp :method nil :id 14 :body [#<hash-table equal 3/65 0x48128281> #<hash-table equal 3/65 0x4812863d> #<hash-table equal 4/65 0x4813a92d> #<hash-table equal 4/65 0x4813abbd> #<hash-table equal 4/65 0x4813cb81> #<hash-table equal 4/65 0x4813dbc1> #<hash-table equal 4/65 0x4813e39d> #<hash-table equal 3/65 0x4813fa35> #<hash-table equal 3/65 0x481407c1> #<hash-table equal 3/65 0x48141761> #<hash-table equal 3/65 0x481417c1> #<hash-table equal 3/65 0x42a5a4c1> #<hash-table equal 3/65 0x4938c541> #<hash-table equal 3/65 0x4939101d> #<hash-table equal 3/65 0x49392441> #<hash-table equal 3/65 0x49392821> #<hash-table equal 3/65 0x493948fd> #<hash-table equal 4/65 0x49395941> #<hash-table equal 4/65 0x493964fd> #<hash-table equal 4/65 0x49397541> #<hash-table equal 3/65 0x4bd890c1> #<hash-table equal 3/65 0x4bd89fd9> #<hash-table equal 3/65 0x4bd8a0dd> #<hash-table equal 3/65 0x4bd8bc5d> #<hash-table equal 3/65 0x4bd8bcdd> #<hash-table equal 3/65 0x4bd8e0c1> #<hash-table equal 4/65 0x4bd8f101> #<hash-table equal 4/65 0x4bd8f4bd> #<hash-table equal 4/65 0x4bd90e2d> #<hash-table equal 4/65 0x4bd910bd> #<hash-table equal 4/65 0x4bd92881> #<hash-table equal 4/65 0x4bd940c1> #<hash-table equal 4/65 0x4bd9489d> #<hash-table equal 4/65 0x4bd95f35> #<hash-table equal 4/65 0x4bd96cc1> #<hash-table equal 4/65 0x4bd97c61> #<hash-table equal 4/65 0x4bd97cc1> #<hash-table equal 4/65 0x4bd998c1> #<hash-table equal 4/65 0x4bd9a0c1> #<hash-table equal 4/65 0x4bd9b09d> #<hash-table equal 4/65 0x4bd9c4c1> #<hash-table equal 4/65 0x4bd9c8a1> #<hash-table equal 3/65 0x4bd9e07d> #<hash-table equal 3/65 0x4bd9f8c1> #<hash-table equal 3/65 0x4bda047d> #<hash-table equal 3/65 0x481437c1> #<hash-table equal 3/65 0x481447c1> #<hash-table equal 3/65 0x4815f259> #<hash-table equal 3/65 0x4815f35d> #<hash-table equal 3/65 0x48160edd> ...]) #<marker at 714758 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:03 PM" :process-time 0 :type incoming-resp :method nil :id 13 :body [#<hash-table equal 3/65 0x4718535d> #<hash-table equal 3/65 0x48955b3d> #<hash-table equal 3/65 0x47153dad> #<hash-table equal 4/65 0x4bd4b459> #<hash-table equal 4/65 0x4bd44655> #<hash-table equal 4/65 0x4bd44851> #<hash-table equal 4/65 0x471ca041> #<hash-table equal 4/65 0x4bd445bd> #<hash-table equal 3/65 0x4712efc1> #<hash-table equal 3/65 0x4bd42029> #<hash-table equal 3/65 0x47130bc1> #<hash-table equal 3/65 0x4884e1b9> #<hash-table equal 3/65 0x471327c1> #<hash-table equal 3/65 0x47153b81> #<hash-table equal 3/65 0x471679b5> #<hash-table equal 3/65 0x47168741> #<hash-table equal 3/65 0x471696e1> #<hash-table equal 3/65 0x47169741> #<hash-table equal 3/65 0x4716b341> #<hash-table equal 3/65 0x4716bb41> #<hash-table equal 3/65 0x4716cb1d> #<hash-table equal 3/65 0x4716df41> #<hash-table equal 3/65 0x4716e321> #<hash-table equal 4/65 0x4716fafd> #<hash-table equal 4/65 0x47170b41> #<hash-table equal 4/65 0x47146ffd> #<hash-table equal 4/65 0x47148041> #<hash-table equal 4/65 0x47149041> #<hash-table equal 4/65 0x47149f59> #<hash-table equal 4/65 0x4714a05d> #<hash-table equal 4/65 0x4714bbdd> #<hash-table equal 4/65 0x4714bc5d> #<hash-table equal 4/65 0x4714d841> #<hash-table equal 4/65 0x4714f081> #<hash-table equal 4/65 0x4714f43d> #<hash-table equal 3/65 0x47150dad> #<hash-table equal 3/65 0x4715103d> #<hash-table equal 3/65 0x47152801> #<hash-table equal 3/65 0x47122ac1> #<hash-table equal 3/65 0x4712329d> #<hash-table equal 3/65 0x47124935> #<hash-table equal 3/65 0x471256c1> #<hash-table equal 3/65 0x47126661> #<hash-table equal 3/65 0x471266c1> #<hash-table equal 3/65 0x4bc31341> #<hash-table equal 4/65 0x4bc9b3c1> #<hash-table equal 4/65 0x4bcc7f9d> #<hash-table equal 4/65 0x4bc3ec41> #<hash-table equal 4/65 0x4bc3f021> #<hash-table equal 4/65 0x4bca17fd> ...]) #<marker at 358127 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 19 :body ...) #<marker at 358027 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357940 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 18 :body ...) #<marker at 357841 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357754 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 17 :body ...) #<marker at 357656 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357569 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 16 :body ...) #<marker at 357472 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357385 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 15 :body ...) #<marker at 357289 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357202 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 14 :body ...) #<marker at 357107 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:02 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 357020 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:01 PM" :process-time nil :type incoming-notif :method "telemetry/event" :id nil :body #<hash-table equal 3/65 0x48955e39>) #<marker at 356723 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:01 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 13 :body ...) #<marker at 356629 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:01 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 356542 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:01:00 PM" :process-time 463 :type incoming-resp :method "workspace/symbol" :id 12 :body [#<hash-table equal 3/65 0x4bc9bbc1> #<hash-table equal 3/65 0x4056dcc1> #<hash-table equal 3/65 0x46dd6de5> #<hash-table equal 3/65 0x47d0af41> #<hash-table equal 3/65 0x448e5c41> #<hash-table equal 3/65 0x4682d359> #<hash-table equal 4/65 0x46cc35c1> #<hash-table equal 4/65 0x48d9f841> #<hash-table equal 4/65 0x4bc9bed9> #<hash-table equal 4/65 0x4bd48a41> #<hash-table equal 4/65 0x4bd567c1> #<hash-table equal 4/65 0x4bd576d9> #<hash-table equal 4/65 0x4bd577dd> #<hash-table equal 4/65 0x4bd3f55d> #<hash-table equal 4/65 0x4bd3f5dd> #<hash-table equal 4/65 0x4bd411c1> #<hash-table equal 4/65 0x4bca2481> #<hash-table equal 4/65 0x4bca283d> #<hash-table equal 4/65 0x4bca41ad> #<hash-table equal 4/65 0x4bca443d> #<hash-table equal 4/65 0x4bca5c01> #<hash-table equal 4/65 0x4bc9e9c1> #<hash-table equal 4/65 0x4bc9f19d> #<hash-table equal 3/65 0x4bca68b5> #<hash-table equal 3/65 0x4bca7641> #<hash-table equal 3/65 0x4bca85e1> #<hash-table equal 3/65 0x4bca8641> #<hash-table equal 3/65 0x4bcaa241> #<hash-table equal 3/65 0x4bcaaa41> #<hash-table equal 3/65 0x4bcaba1d> #<hash-table equal 3/65 0x4bcace41> #<hash-table equal 3/65 0x4bcad221> #<hash-table equal 3/65 0x4bcae9fd> #<hash-table equal 3/65 0x4bcafa41> #<hash-table equal 3/65 0x4bcb05fd> #<hash-table equal 3/65 0x4bcb1641> #<hash-table equal 3/65 0x4bcb2641> #<hash-table equal 3/65 0x4bcb3d59> #<hash-table equal 3/65 0x4bcb3e5d> #<hash-table equal 3/65 0x4bcb59dd> #<hash-table equal 3/65 0x4bcb5a5d> #<hash-table equal 3/65 0x4bcb82c1> #<hash-table equal 3/65 0x4bcb9301> #<hash-table equal 3/65 0x4bcb96bd> #<hash-table equal 4/65 0x4bcbb02d> #<hash-table equal 4/65 0x4bcbb2bd> #<hash-table equal 4/65 0x4bcbca81> #<hash-table equal 4/65 0x4bcbdac1> #<hash-table equal 4/65 0x4bcbe29d> #<hash-table equal 4/65 0x4bcbf935> ...]) #<marker at 465 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:00:59 PM" :process-time nil :type incoming-notif :method "telemetry/event" :id nil :body #<hash-table equal 3/65 0x44589821>) #<marker at 180 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:00:59 PM" :process-time nil :type outgoing-req :method "workspace/symbol" :id 12 :body ...) #<marker at 87 in *lsp-log: mspyls:29493*>] #s(lsp--log-entry :timestamp "06:00:59 PM" :process-time nil :type outgoing-notif :method "$/cancelRequest" :id nil :body ...) #<marker at 1 in *lsp-log: mspyls:29493*>] "" #<marker at 1 in *lsp-log: mspyls:29493*>] DL-LIST #<marker at 911526 in *lsp-log: mspyls:29493*>] :last-node nil :hf-pp insert) :server-capabilities #<hash-table equal 15/65 0x481d0041> :registered-server-capabilities nil :root "/Users/sean/projects/coiled" :client #s(lsp--client :language-id nil :add-on? nil :new-connection (:connect #f(compiled-function (filter sentinel name environment-fn) #<bytecode 0x4bc8e46d>) :test\? #f(compiled-function () #<bytecode 0x4bc8e3a5>)) :ignore-regexps nil :ignore-messages nil :notification-handlers #<hash-table equal 5/65 0x4bc8e479> :request-handlers #<hash-table equal 0/65 0x4bc8e499> :response-handlers #<hash-table eql 0/65 0x4bc8e8c1> :prefix-function nil :uri-handlers #<hash-table equal 0/65 0x4bc8ecc1> :action-handlers #<hash-table equal 0/65 0x4bc8e4b9> :major-modes (python-mode) :activation-fn nil :priority -2 :server-id mspyls :multi-root nil :initialization-options lsp-python-ms--extra-init-params :custom-capabilities nil :library-folders-fn nil :before-file-open-fn nil :initialized-fn #f(compiled-function (workspace) #<bytecode 0x4bc8e3bd>) :remote? nil :completion-in-comments? nil :path->uri-fn nil :uri->path-fn nil :environment-fn nil :after-open-fn nil :async-request-handlers #<hash-table equal 0/65 0x4bc8e4d9> :download-server-fn lsp-python-ms--install-server :download-in-progress? nil :buffers nil) :host-root nil :proc #<process mspyls> :cmd-proc #<process mspyls> :buffers (#<buffer api_views.py>) :semantic-highlighting-faces nil :extra-client-capabilities nil :status initialized :metadata #<hash-table equal 0/65 0x480c00ed> :watches #<hash-table equal 0/65 0x480c010d> :workspace-folders nil :last-id 0 :status-string nil :shutdown-action nil :diagnostics #<hash-table equal 0/65 0x480c648d>)) "Workspace symbol: " nil)
  lsp-ivy-workspace-symbol(nil)
  funcall-interactively(lsp-ivy-workspace-symbol nil)
  call-interactively(lsp-ivy-workspace-symbol nil nil)
  #f(compiled-function (cmd &optional record-flag keys special) "Execute CMD as an editor command.\nCMD must be a symbol that satisfies the `commandp' predicate.\nOptional second arg RECORD-FLAG non-nil\nmeans unconditionally put this command in the variable `command-history'.\nOtherwise, that is done only if an arg is read using the minibuffer.\nThe argument KEYS specifies the value to use instead of (this-command-keys)\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\nThe argument SPECIAL, if non-nil, means that this command is executing\na special event, so ignore the prefix argument and don't clear it." #<bytecode 0x400bc3c3>)(lsp-ivy-workspace-symbol nil nil nil)
  ad-Advice-command-execute(#f(compiled-function (cmd &optional record-flag keys special) "Execute CMD as an editor command.\nCMD must be a symbol that satisfies the `commandp' predicate.\nOptional second arg RECORD-FLAG non-nil\nmeans unconditionally put this command in the variable `command-history'.\nOtherwise, that is done only if an arg is read using the minibuffer.\nThe argument KEYS specifies the value to use instead of (this-command-keys)\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\nThe argument SPECIAL, if non-nil, means that this command is executing\na special event, so ignore the prefix argument and don't clear it." #<bytecode 0x400bc3c3>) lsp-ivy-workspace-symbol)
  apply(ad-Advice-command-execute #f(compiled-function (cmd &optional record-flag keys special) "Execute CMD as an editor command.\nCMD must be a symbol that satisfies the `commandp' predicate.\nOptional second arg RECORD-FLAG non-nil\nmeans unconditionally put this command in the variable `command-history'.\nOtherwise, that is done only if an arg is read using the minibuffer.\nThe argument KEYS specifies the value to use instead of (this-command-keys)\nwhen reading the arguments; if it is nil, (this-command-keys) is used.\nThe argument SPECIAL, if non-nil, means that this command is executing\na special event, so ignore the prefix argument and don't clear it." #<bytecode 0x400bc3c3>) lsp-ivy-workspace-symbol)
  command-execute(lsp-ivy-workspace-symbol)
raxod502 commented 4 years ago

This is an upstream bug. See the linked pull request.

seanfarley commented 4 years ago

Oh wow, thanks for the PR!

raxod502 commented 4 years ago

Ok, should be fixed now.

seanfarley commented 4 years ago

Wooooo, it works! Thanks again!